Extracción, pre-procesamiento y normalización de textos

NLP - Analítica Estratégica de Datos


Fundación Universitaria Konrad Lorenz
Docente: Viviana Márquez vivianam.penama@konradlorenz.edu.co
Clase #3: Marzo 4, 2021

Retroalimentación Taller 2

⌛ En la clase anterior

  • Repaso de Python
  • Pasos en un proyecto de NLP (flujo de datos/pipeline)
  • Métodos de adquisición de texto más comunes

Flujo de datos en un proyecto de NLP (pipeline)


Flujo de datos en un proyecto de NLP (pipeline) --- En la clase anterior


Flujo de datos en un proyecto de NLP (pipeline) --- Hoy


Antes de poder crear cualquier modelo, es más, antes de poder transformal el texto de tal manera que lo podamos usar en un algoritmo, debemos limpiarlo para así obtener los mejores resultados. Este es quizás el paso más importante para el resto del proceso de NLP y el que más conlleva tiempo.

🚀 Hoy veremos...

  • Último método de adquisición de texto (Web Scraping)
  • Herramientas generales de limpieza de texto
  • Próxima clase: Herramientas específicas de pre-procesamiento de texto en NLP
  • Taller #3

👷🏽‍♀️ Adquisición de textos: Web Scraping

  • Extraer datos de las páginas web, usualmente HTML
  • ⚠️ Leer las reglas de uso de la página web y/o rotar proxys, simular comportamiento humano
  • Alternativa: APIs
  • Otra forma de hacer scraping más sofisticada es con Selenium. Más info aquí.
  • Hoy vamos a usar BeautifulSoup pip install beautifulsoup4

Repaso rápido de HTML

Un documento de HTML tiene etiquetas las cuales permiten diferenciar las partes del archivo.

Las más comunes/útiles son:

  • <div> División de una página
  • <p> Párrafo
  • <a href> Links
  • <b>, <i> ... Formatear la fuente

Repaso rápido de HTML

Ejemplo:

<a href="http://www.google.com/" id="buscador">Google</a>

Requests & Beautiful Soup

  • Requests permite descargar páginas web en Python

  • Beautiful Soup nos ayuda a procesar los contenidos de una página web de manera fácil.

    • find(): Regresa la primera ocurrencia de una etiqueta.
    • find_all(): Regresa todas las ocurrencias de nuestra equiqueta.
    • children: Lista de las etiquetas anidadas.

https://codeshare.io/5OMdrv

Beautiful Soup

pip install beautifulsoup4

In [1]:
import bs4 as bs
<div id="test" class="text" blah="valor">¡Hola, mundo!</div>
In [7]:
# Cargar el documento
ejemplo = bs.BeautifulSoup('''
                           <div id="test" class="text" blah="valor">¡Hola, mundo!</div>
                           <div id="test2" class="text" blah="valor">¡Hola, mundo 2!</div>
                           ''')
ejemplo
Out[7]:
<html><body><div blah="valor" class="text" id="test">¡Hola, mundo!</div>
<div blah="valor" class="text" id="test2">¡Hola, mundo 2!</div>
</body></html>
In [15]:
# Diferentes maneras de encontrar etiquetas
ejemplo.find_all("div") # Nombre de la etiqueta
ejemplo.find_all(class_="text") # Nombre y contenido del atributo
Out[15]:
[<div blah="valor" class="text" id="test">¡Hola, mundo!</div>,
 <div blah="valor" class="text" id="test2">¡Hola, mundo 2!</div>]
In [21]:
for etiqueta in ejemplo.find_all("div"):
    print(etiqueta.get("id"))
test
test2
In [27]:
ejemplo.find("div").contents
ejemplo.find("div").text
Out[27]:
'¡Hola, mundo!'

Requests

In [28]:
import urllib.request
In [29]:
link = "https://coinmarketcap.com/"
In [30]:
# Descargar la página web en Python 
request = urllib.request.Request(link, headers={'User-Agent': 'Mozilla/5.0'})
webpage = urllib.request.urlopen(request)
source = webpage.read()
webpage.close()
In [31]:
source
Out[31]:
b'<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" /><meta http-equiv="x-ua-compatible" content="ie=edge" /><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no" /><link rel="preconnect" href="https://s2.coinmarketcap.com" crossorigin="anonymous" /><link rel="dns-prefetch" href="https://s2.coinmarketcap.com" crossorigin="anonymous" /><link rel="preconnect" href="https://s3.coinmarketcap.com" crossorigin="anonymous" /><link rel="dns-prefetch" href="https://s3.coinmarketcap.com" crossorigin="anonymous" /><link rel="preconnect" href="//www.googletagmanager.com" /><link rel="preload" href="https://s2.coinmarketcap.com/static/cloud/fonts/cmc-v2/CMC-V2.woff" as="font" type="font/woff2" crossorigin="anonymous" /><meta name="google-site-verification" content="EDc1reqlQ-zAgeRrrgAxRXNK-Zs9JgpE9a0wdaoSO9A" /><script charset="UTF-8" src="https://cdn.jsdelivr.net/npm/sa-sdk-javascript@1.15.26/sensorsdata.min.js"></script><script charset="UTF-8">var projectName = location.host === \'coinmarketcap.com\' ? \'cmc\' : \'default\';var sensors = window[\'sensorsDataAnalytic201505\'];sensors.init({show_log:false,send_type: \'beacon\', use_client_time: true, datasend_timeout: 10000, app_js_bridge: true,server_url: \'https://sensors.binance.cloud/sa?project=\' + projectName,heatmap:{scroll_notice_map:\'not_collect\'}});sensors.registerPage({tag:location.host.indexOf(\'cn-test\') > -1?\'cn\':\'com\'});sensors.quick(\'autoTrack\');</script><meta property="og:image" content="https://s2.coinmarketcap.com/static/cloud/img/splash_600x315_1.png?_=29bbdee" /><meta property="og:image:type" content="image/png" /><meta property="og:image:width" content="600" /><meta property="og:image:height" content="315" /><meta property="og:site_name" content="CoinMarketCap" /><meta property="og:type" content="website" /><meta name="twitter:card" content="summary_large_image" /><link rel="apple-touch-icon" href="/apple-touch-icon.png" /><link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /><meta property="og:url" content="https://coinmarketcap.com/" /><link rel="canonical" href="https://coinmarketcap.com/" /><link rel="alternate" hrefLang="de" href="https://coinmarketcap.com/de/" /><link rel="alternate" hrefLang="en" href="https://coinmarketcap.com/" /><link rel="alternate" hrefLang="es" href="https://coinmarketcap.com/es/" /><link rel="alternate" hrefLang="fil" href="https://coinmarketcap.com/fil/" /><link rel="alternate" hrefLang="fr" href="https://coinmarketcap.com/fr/" /><link rel="alternate" hrefLang="hi" href="https://coinmarketcap.com/hi/" /><link rel="alternate" hrefLang="it" href="https://coinmarketcap.com/it/" /><link rel="alternate" hrefLang="ja" href="https://coinmarketcap.com/ja/" /><link rel="alternate" hrefLang="ko" href="https://coinmarketcap.com/ko/" /><link rel="alternate" hrefLang="pt-br" href="https://coinmarketcap.com/pt-br/" /><link rel="alternate" hrefLang="ru" href="https://coinmarketcap.com/ru/" /><link rel="alternate" hrefLang="tr" href="https://coinmarketcap.com/tr/" /><link rel="alternate" hrefLang="vi" href="https://coinmarketcap.com/vi/" /><link rel="alternate" hrefLang="zh" href="https://coinmarketcap.com/zh/" /><link rel="alternate" hrefLang="zh-tw" href="https://coinmarketcap.com/zh-tw/" /><link rel="manifest" href="/manifest.json" /><script>\n    window.dataLayer = window.dataLayer || [];\n    window.dataLayer.push({ "appType": "nextjs" });\n    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\': new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\'//www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);})(window,document,\'script\',\'dataLayer\',\'GTM-MNVXW26\');\n  </script><title>Cryptocurrency Prices, Charts And Market Capitalizations | CoinMarketCap</title><meta property="og:title" content="Cryptocurrency Prices, Charts And Market Capitalizations | CoinMarketCap" /><meta name="description" content="Top cryptocurrency prices and charts, listed by market capitalization. Free access to current and historic data for Bitcoin and thousands of altcoins." /><meta property="og:description" content="Top cryptocurrency prices and charts, listed by market capitalization. Free access to current and historic data for Bitcoin and thousands of altcoins." /><script type="application/ld+json">{"@context":"http://schema.org","@type":"Organization","name":"CoinMarketCap","url":"https://coinmarketcap.com","logo":"https://coinmarketcap.com/apple-touch-icon.png","sameAs":["https://www.facebook.com/CoinMarketCap/","https://twitter.com/coinmarketcap"]}</script><script type="application/ld+json">{"@context":"http://schema.org","@type":"Table","about":"Cryptocurrency Prices Today"}</script><meta name="next-head-count" content="46" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/css/styles.7f224781.chunk.css" as="style" /><link rel="stylesheet" href="https://s2.coinmarketcap.com/_next/static/css/styles.7f224781.chunk.css" data-n-g="" /><noscript data-n-css=""></noscript><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/main-8c2f1e2471828b81026a.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/webpack-be8a316bce581625c5e2.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/framework.79429a698019810fd19a.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/1e19085d46be8ae3ff9c236da791e2000f4cc35c.23f981a62f3f56e06112.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/1c11b056ac55245ba2869cf57b017ab03e18a446.02ed88a4d38c623d113c.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/4365bb2cb90d6d43b6fddc97ef52a8b566ce4201.c0a603978ddfb09d775c.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/f9959dec42fa8e5dd928304f52bcef5e4ead81f9.f2d9050ac9d6f7d2d952.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/cc3f29cc0b0d7942a12bd812058ff8235d49ca65.ccb58c77657ffd1100b6.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/cc7dcbae8818cfb099ac311f79b30db63cc819c9.02d3b7ae70a6953b6d6c.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/83f2e50000c4e2c363ec472406c2edda6f1c16ce.4e6698faeb878b7c9fbc.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/7b3896592f6bd0b298c19dd4d8354f9d91ce480e.31b014859fab358272ba.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/30e309cc7abdea375b7bd984e366392b9da944f2.34c7bdff426bd3314c34.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/655c323a305da81d43026031816a85481c1b9680.99082661aeb7fde288ba.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/40cbab0505061a40cd620fc62d1432b9a5bf5fe3.36806490989603726c11.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/a2bba0fe3111882f540e8cbf7e3f49e7588aa2a7.66ed31d5df5a3a5b4c01.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/ff4c89236e3083d754c8c98a83cf29ec81011835.33965c9745169d21431f.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/e5f9db3ed3e15d395c2ab0c90e7af622747a347b.86fa3a0df25aee41ea77.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/70794292e8bd506f7e17b958757c7918261d0773.d095fe82ba43c673422c.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/36aac51ccbe5da6bcf06fecba089bd8f49d2f980.252c7850b2f3588aab2f.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/950ebb8a0f19bd14810d16d95e94cbf78936c50b.6f07e361ad537c7aaa50.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/styles.c55cd3c43b63374a73d7.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/pages/_app-f801038298b6b2d536bd.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/52008dc0e9812e50b03c486092cb752124e99f7a.9ed0e143932b36e29cea.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/292200965c05c5b5cc37f5c0702b676604da0ca4.71bf21e2045803f26945.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/ddcb9a40acf772ca37174d6c128e70e6a1c92357.cd8d8cbbbf76bc1e02c4.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/0cf15cf80c9426c9bbc1acb37060dddab236e82e.0d127d0bc685c1834b11.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/9e5be863560300e96a85facda4ef903e230fdedb.ad0fc8f5a6582d4fb424.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/8521dc3d9b9ece6fd49907ddd03d2a4841e98f4b.8e61b096f19fe2b16a84.js" as="script" /><link rel="preload" href="https://s2.coinmarketcap.com/_next/static/chunks/pages/beta-0ecd66a250ce4678c31a.js" as="script" /><style data-styled="" data-styled-version="5.1.1">.lohPt{position:relative;background-image:url(\'https://s2.coinmarketcap.com/static/cloud/img/coinmarketcap_1.svg?_=29bbdee\');display:inline-block;background-position:center;background-repeat:no-repeat;background-size:contain;width:239px;height:41px;}/*!sc*/\n.lohPt::after{content:\'\';display:none;position:absolute;top:-11px;left:-10px;width:30px;height:30px;background-image:url(https://s2.coinmarketcap.com/static/cloud/img/christmasHat.svg?_=29bbdee);background-position:center;background-repeat:no-repeat;background-size:contain;}/*!sc*/\n.lohPt.cmc-logo--size-large{width:263px;height:45px;}/*!sc*/\ndata-styled.g2[id="sc-7i7lua-0"]{content:"lohPt,"}/*!sc*/\n.gOBYxd{display:block;background-position:center;background-repeat:no-repeat;background-size:contain;width:120px;}/*!sc*/\n.gOBYxd.cmc-app-store-badge--ios{background-image:url(\'https://s2.coinmarketcap.com/static/cloud/img/app_store_badge_black_1.svg?_=29bbdee\');height:40px;}/*!sc*/\n.gOBYxd.cmc-app-store-badge--android{background-image:url(\'https://s2.coinmarketcap.com/static/cloud/img/google_play_badge_1.png?_=29bbdee\');height:36px;}/*!sc*/\ndata-styled.g3[id="sc-17dy621-0"]{content:"gOBYxd,"}/*!sc*/\n.fPKtoJ{background:#fff;padding:48px 10px 38px 10px;font-style:normal;max-width:1400px;margin:0 auto;}/*!sc*/\n.fPKtoJ ul{padding-left:0;list-style:none;}/*!sc*/\n.fPKtoJ ul li{line-height:35px;position:relative;}/*!sc*/\n.fPKtoJ .cmc-app-store-badge{display:inline-block;height:37px;}/*!sc*/\n.fPKtoJ .footer-meta{padding-top:66px;width:100%;}/*!sc*/\n@media (min-width:768px){.fPKtoJ .footer-meta{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/\n@media (max-width:768px){.fPKtoJ .footer-meta{padding-top:50px;}}/*!sc*/\n.fPKtoJ .cmc-logo{height:32px;background-position:left;}/*!sc*/\n.fPKtoJ .tips{height:22px;background:#3861fb;color:#ffffff;line-height:17px;border-radius:40px;font-size:11px;padding:2px 12px;margin-left:5px;}/*!sc*/\n@media (min-width:1400px) and (max-width:1500px){.fPKtoJ{padding:48px 30px 38px 30px;}}/*!sc*/\n@media (min-width:1280px) and (max-width:1400px){.fPKtoJ{padding:48px 25px 38px 25px;}.fPKtoJ .tips{position:absolute;top:5px;right:0px;}}/*!sc*/\n@media (min-width:992px) and (max-width:1280px){.fPKtoJ{padding:48px 80px 38px 80px;}.fPKtoJ .tips{position:relative;}}/*!sc*/\n@media (min-width:768px) and (max-width:992px){.fPKtoJ{padding:48px 30px 38px 30px;}}/*!sc*/\n@media (max-width:768px){.fPKtoJ{padding:38px 5px 38px 25px;}}/*!sc*/\ndata-styled.g4[id="i8b499-0"]{content:"fPKtoJ,"}/*!sc*/\n.leywDA{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;}/*!sc*/\ndata-styled.g5[id="i8b499-1"]{content:"leywDA,"}/*!sc*/\n.kFXOmn{-webkit-flex:1 1 50%;-ms-flex:1 1 50%;flex:1 1 50%;}/*!sc*/\n@media (max-width:1280px){.kFXOmn{-webkit-flex:1 1 100% !important;-ms-flex:1 1 100% !important;flex:1 1 100% !important;margin-bottom:35px;}}/*!sc*/\ndata-styled.g6[id="i8b499-2"]{content:"kFXOmn,"}/*!sc*/\n.jrTZTi{-webkit-flex:1 1 50%;-ms-flex:1 1 50%;flex:1 1 50%;}/*!sc*/\n@media (min-width:992px) and (max-width:1280px){.jrTZTi{-webkit-flex:1 1 100%;-ms-flex:1 1 100%;flex:1 1 100%;}}/*!sc*/\n@media (max-width:768px){.jrTZTi .footer-row{overflow:hidden;}}/*!sc*/\ndata-styled.g7[id="i8b499-3"]{content:"jrTZTi,"}/*!sc*/\n.dzUHFA{-webkit-flex:1 1 70%;-ms-flex:1 1 70%;flex:1 1 70%;font-weight:500;font-size:14px;line-height:21px;color:#58667E;}/*!sc*/\n@media (min-width:768px) and (max-width:992px){.dzUHFA{-webkit-flex:1 1 55%;-ms-flex:1 1 55%;flex:1 1 55%;}}/*!sc*/\n@media (max-width:768px){.dzUHFA{margin-bottom:20px;}}/*!sc*/\ndata-styled.g8[id="i8b499-4"]{content:"dzUHFA,"}/*!sc*/\n.hSxkho{-webkit-flex:1 1 30%;-ms-flex:1 1 30%;flex:1 1 30%;text-align:right;}/*!sc*/\n@media (min-width:768px) and (max-width:992px){.hSxkho{-webkit-flex:1 1 45%;-ms-flex:1 1 45%;flex:1 1 45%;}}/*!sc*/\n@media (max-width:768px){.hSxkho{text-align:left;}}/*!sc*/\ndata-styled.g9[id="i8b499-5"]{content:"hSxkho,"}/*!sc*/\n.gRuTnc{float:left;width:25%;padding-right:10px;box-sizing:border-box;}/*!sc*/\n@media (max-width:768px){.gRuTnc{width:50%;padding-bottom:35px;}}/*!sc*/\n.gRuTnc span{display:inline-block;font-weight:600;font-size:16px;line-height:26px;padding-bottom:18px;padding-top:5px;}/*!sc*/\n.gRuTnc a{font-weight:500;font-size:14px;color:#58667E;}/*!sc*/\ndata-styled.g10[id="i8b499-6"]{content:"gRuTnc,"}/*!sc*/\n.eTRJtf{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:600;border-radius:40px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:1px 8px;font-size:12px;line-height:18px;height:20px;color:#FFFFFF;background-color:#3861FB;margin-left:8px;}/*!sc*/\ndata-styled.g16[id="sc-AxiKw"]{content:"eTRJtf,"}/*!sc*/\n.gAIOEV{box-sizing:border-box;margin:0;margin-left:8px;margin-right:8px;padding-right:8px;}/*!sc*/\n.gAIOEV a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.CnJdC{box-sizing:border-box;margin:0;height:16px;width:16px;}/*!sc*/\n.CnJdC a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.loZKFC{box-sizing:border-box;margin:0;height:24px;width:24px;}/*!sc*/\n.loZKFC a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.jDlxxm{box-sizing:border-box;margin:0;height:22;width:22;}/*!sc*/\n.jDlxxm a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.bKwmGO{box-sizing:border-box;margin:0;height:40;width:40;}/*!sc*/\n.bKwmGO a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.fwIcUB{box-sizing:border-box;margin:0;margin-right:8px;}/*!sc*/\n.fwIcUB a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.iQwsru{box-sizing:border-box;margin:0;height:18px;width:18px;}/*!sc*/\n.iQwsru a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.bkedAk{box-sizing:border-box;margin:0;padding-top:4px;padding-bottom:16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/\n.bkedAk a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n@media screen and (min-width:768px){.bkedAk{padding-top:24px;padding-bottom:24px;}}/*!sc*/\n@media screen and (min-width:768px){}/*!sc*/\n@media screen and (min-width:1152px){.bkedAk{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}/*!sc*/\n.dYbySe{box-sizing:border-box;margin:0;margin-right:0;-webkit-flex:1;-ms-flex:1;flex:1;}/*!sc*/\n.dYbySe a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n@media screen and (min-width:768px){.dYbySe{margin-right:0;}}/*!sc*/\n@media screen and (min-width:1152px){.dYbySe{margin-right:24px;}}/*!sc*/\n.bYwLMj{box-sizing:border-box;margin:0;}/*!sc*/\n.bYwLMj a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.keRptt{box-sizing:border-box;margin:0;margin-right:4px;}/*!sc*/\n.keRptt a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.guSXYp{box-sizing:border-box;margin:0;margin-top:16px;}/*!sc*/\n.guSXYp a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.kbfzRn{box-sizing:border-box;margin:0;margin-top:16px;min-height:90px;width:100%;}/*!sc*/\n.kbfzRn a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n@media screen and (min-width:768px){.kbfzRn{margin-top:24px;}}/*!sc*/\n@media screen and (min-width:1152px){.kbfzRn{margin-top:0;}}/*!sc*/\n@media screen and (min-width:768px){}/*!sc*/\n@media screen and (min-width:1152px){.kbfzRn{max-width:728px;}}/*!sc*/\n.cUEIif{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n.cUEIif a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.dqoXIW{box-sizing:border-box;margin:0;height:14px;width:14px;}/*!sc*/\n.dqoXIW a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.bpYSuY{box-sizing:border-box;margin:0;height:16;width:16;color:#A6B0C3;}/*!sc*/\n.bpYSuY a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.bzAUaH{box-sizing:border-box;margin:0;margin:16px;}/*!sc*/\n.bzAUaH a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\ndata-styled.g17[id="sc-AxhCb"]{content:"gAIOEV,CnJdC,loZKFC,jDlxxm,bKwmGO,fwIcUB,iQwsru,bkedAk,dYbySe,bYwLMj,keRptt,guSXYp,kbfzRn,cUEIif,dqoXIW,bpYSuY,bzAUaH,"}/*!sc*/\n.fqrLrs{line-height:1.5;margin:0;color:#222531;font-weight:600;font-size:14px;}/*!sc*/\n.fEdfVy{line-height:1.5;margin:0;color:#222531;font-size:16px;font-weight:600;}/*!sc*/\n.juchaL{line-height:1.5;margin:0;margin-left:12px;color:#222531;font-size:16px;font-weight:500;}/*!sc*/\n.gEvIrr{line-height:1.5;margin:0;color:#58667E;font-size:14px;}/*!sc*/\n.diNEjy{line-height:1.5;margin:0;color:#58667E;font-weight:600;font-size:14px;}/*!sc*/\n.evInTq{line-height:1.5;margin:0;margin-bottom:4px;color:#58667E;font-size:14px;}/*!sc*/\n.jEtXdd{line-height:1.5;margin:0;margin-right:6px;color:#58667E;font-size:12px;}/*!sc*/\n.cgLliP{line-height:1.5;margin:0;color:#222531;font-size:12px;}/*!sc*/\n.kVvvpJ{line-height:1.5;margin:0;color:#222531;font-size:14px;}/*!sc*/\n.cEPKAB{line-height:1.5;margin:0;color:#58667E;font-size:12px;}/*!sc*/\n.bzeXdk{line-height:1.5;margin:0;color:#808A9D;font-size:14px;}/*!sc*/\n.ghbWav{line-height:1.5;margin:0;color:#222531;font-size:14px;font-weight:500;}/*!sc*/\n.bduqLR{line-height:1.5;margin:0;margin-left:4px;color:#222531;font-size:11px;}/*!sc*/\n.loaKBT{line-height:1.5;margin:0;margin-right:6px;color:#58667E;font-size:14px;}/*!sc*/\ndata-styled.g18[id="sc-AxhUy"]{content:"fqrLrs,fEdfVy,juchaL,gEvIrr,diNEjy,evInTq,jEtXdd,cgLliP,kVvvpJ,cEPKAB,bzeXdk,ghbWav,bduqLR,loaKBT,"}/*!sc*/\n.ivcmHV{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border:0;border-radius:8px;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:#000000;cursor:pointer;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:0;font-weight:600;width:auto;height:48px;font-size:16px;padding:0 24px;line-height:26px;}/*!sc*/\n.ivcmHV:hover:not(:disabled){background:#F8FAFD;color:#000000;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.ivcmHV:active{background:#FFFFFF;color:#3861FB;}/*!sc*/\n.ivcmHV:focus{background:#F8FAFD;box-shadow:0 0 0 3px #EFF2F5;color:#000000;}/*!sc*/\n.ivcmHV:disabled{background:#EFF2F5;color:#000000;opacity:0.5;cursor:not-allowed;}/*!sc*/\n.efDSWh{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#EFF2F5;border:0;border-radius:8px;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:#000000;cursor:pointer;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:0;font-weight:600;width:auto;height:32px;font-size:12px;padding:0 16px;line-height:18px;}/*!sc*/\n.efDSWh:hover:not(:disabled){background:linear-gradient(0deg,rgba(0,0,0,0.02),rgba(0,0,0,0.02)),#EFF2F5;color:#000000;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.efDSWh:active{background:#EFF2F5;}/*!sc*/\n.efDSWh:focus{background:#EFF2F5;box-shadow:0 0 0 3px #CFD6E4;color:#000000;}/*!sc*/\n.efDSWh:disabled{background:#EFF2F5;color:#000000;opacity:0.5;cursor:not-allowed;}/*!sc*/\n.kRJbDY{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border:0;border-radius:8px;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:#000000;cursor:pointer;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:0;font-weight:600;width:auto;height:32px;font-size:12px;padding:0 16px;line-height:18px;}/*!sc*/\n.kRJbDY:hover:not(:disabled){background:#F8FAFD;color:#000000;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.kRJbDY:active{background:#FFFFFF;color:#3861FB;}/*!sc*/\n.kRJbDY:focus{background:#F8FAFD;box-shadow:0 0 0 3px #EFF2F5;color:#000000;}/*!sc*/\n.kRJbDY:disabled{background:#EFF2F5;color:#000000;opacity:0.5;cursor:not-allowed;}/*!sc*/\n.bJMCAy{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border:0;border-radius:50vh;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:#000000;cursor:pointer;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:0;font-weight:600;width:auto;height:40px;font-size:14px;padding:0 24px;line-height:24px;}/*!sc*/\n.bJMCAy:hover:not(:disabled){background:#F8FAFD;color:#000000;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.bJMCAy:active{background:#FFFFFF;color:#3861FB;}/*!sc*/\n.bJMCAy:focus{background:#F8FAFD;box-shadow:0 0 0 3px #EFF2F5;color:#000000;}/*!sc*/\n.bJMCAy:disabled{background:#EFF2F5;color:#000000;opacity:0.5;cursor:not-allowed;}/*!sc*/\n.iJxTJr{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#3861FB;border:0;border-radius:8px;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:#FFFFFF;cursor:pointer;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:0;font-weight:600;width:auto;height:32px;font-size:12px;padding:0 16px;line-height:18px;}/*!sc*/\n.iJxTJr:hover:not(:disabled){background:linear-gradient(0deg,rgba(0,0,0,0.08),rgba(0,0,0,0.08)),#3861FB;color:#FFFFFF;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.iJxTJr:active{background:#3861FB;}/*!sc*/\n.iJxTJr:focus{background:#3861FB;box-shadow:0 0 0 3px rgba(56,97,251,0.32);color:#FFFFFF;}/*!sc*/\n.iJxTJr:disabled{background:#EFF2F5;color:#000000;opacity:0.5;cursor:not-allowed;}/*!sc*/\ndata-styled.g21[id="sc-Axmtr"]{content:"ivcmHV,efDSWh,kRJbDY,bJMCAy,iJxTJr,"}/*!sc*/\n.kdmeeD{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-left:0;margin-right:8px;}/*!sc*/\ndata-styled.g22[id="sc-AxmLO"]{content:"kdmeeD,"}/*!sc*/\n.iVccbF{margin:0;font-weight:700;font-size:24px;line-height:34px;font-size:14px;line-height:28px;margin-bottom:4px;margin-top:8px;color:#222531;}/*!sc*/\n@media screen and (min-width:768px){.iVccbF{font-size:32px;line-height:42px;}}/*!sc*/\n@media screen and (min-width:1152px){.iVccbF{font-size:48px;line-height:66px;}}/*!sc*/\n@media screen and (min-width:768px){.iVccbF{font-size:24px;line-height:34px;}}/*!sc*/\ndata-styled.g31[id="sc-fzqBZW"]{content:"iVccbF,"}/*!sc*/\n.edTNjJ{border-radius:8px;padding:0;width:48px;}/*!sc*/\n.fvNIAx{border-radius:50%;padding:0;width:40px;}/*!sc*/\ndata-styled.g32[id="sc-fzqNJr"]{content:"edTNjJ,fvNIAx,"}/*!sc*/\n.eLpUJW .grid{box-sizing:border-box;width:100%;padding-right:16px;padding-left:16px;margin-right:auto;margin-left:auto;}/*!sc*/\n@media (min-width:1376px){.eLpUJW .grid{max-width:1408px;}}/*!sc*/\n.eLpUJW .grid.edge-md{padding-right:0;padding-left:0;}/*!sc*/\n@media (min-width:1152px){.eLpUJW .grid.edge-md{padding-right:16px;padding-left:16px;}}/*!sc*/\n.eLpUJW .grid-fluid,.eLpUJW .grid-xl{width:100%;padding-right:16px;padding-left:16px;margin-right:auto;margin-left:auto;}/*!sc*/\n@media (min-width:1376px){.eLpUJW .grid,.eLpUJW .grid-sm,.eLpUJW .grid-md,.eLpUJW .grid-lg,.eLpUJW .grid-xl{max-width:1408px;}}/*!sc*/\n.eLpUJW .uikit-row{box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-16px;margin-left:-16px;}/*!sc*/\n.eLpUJW .no-gutters{margin-right:0;margin-left:0;}/*!sc*/\n.eLpUJW .no-gutters > .uikit-col,.eLpUJW .no-gutters > [class*="uikit-col-"]{padding-right:0;padding-left:0;}/*!sc*/\n.eLpUJW .uikit-col-1,.eLpUJW .uikit-col-2,.eLpUJW .uikit-col-3,.eLpUJW .uikit-col-4,.eLpUJW .uikit-col-5,.eLpUJW .uikit-col-6,.eLpUJW .uikit-col-7,.eLpUJW .uikit-col-8,.eLpUJW .uikit-col-9,.eLpUJW .uikit-col-10,.eLpUJW .uikit-col-11,.eLpUJW .uikit-col-12,.eLpUJW .uikit-col-13,.eLpUJW .uikit-col-14,.eLpUJW .uikit-col-15,.eLpUJW .uikit-col-16,.eLpUJW .uikit-col,.eLpUJW .uikit-col-auto,.eLpUJW .uikit-col-sm-1,.eLpUJW .uikit-col-sm-2,.eLpUJW .uikit-col-sm-3,.eLpUJW .uikit-col-sm-4,.eLpUJW .uikit-col-sm-5,.eLpUJW .uikit-col-sm-6,.eLpUJW .uikit-col-sm-7,.eLpUJW .uikit-col-sm-8,.eLpUJW .uikit-col-sm-9,.eLpUJW .uikit-col-sm-10,.eLpUJW .uikit-col-sm-11,.eLpUJW .uikit-col-sm-12,.eLpUJW .uikit-col-sm-13,.eLpUJW .uikit-col-sm-14,.eLpUJW .uikit-col-sm-15,.eLpUJW .uikit-col-sm-16,.eLpUJW .uikit-col-sm,.eLpUJW .uikit-col-sm-auto,.eLpUJW .uikit-col-md-1,.eLpUJW .uikit-col-md-2,.eLpUJW .uikit-col-md-3,.eLpUJW .uikit-col-md-4,.eLpUJW .uikit-col-md-5,.eLpUJW .uikit-col-md-6,.eLpUJW .uikit-col-md-7,.eLpUJW .uikit-col-md-8,.eLpUJW .uikit-col-md-9,.eLpUJW .uikit-col-md-10,.eLpUJW .uikit-col-md-11,.eLpUJW .uikit-col-md-12,.eLpUJW .uikit-col-md-13,.eLpUJW .uikit-col-md-14,.eLpUJW .uikit-col-md-15,.eLpUJW .uikit-col-md-16,.eLpUJW .uikit-col-md,.eLpUJW .uikit-col-md-auto,.eLpUJW .uikit-col-lg-1,.eLpUJW .uikit-col-lg-2,.eLpUJW .uikit-col-lg-3,.eLpUJW .uikit-col-lg-4,.eLpUJW .uikit-col-lg-5,.eLpUJW .uikit-col-lg-6,.eLpUJW .uikit-col-lg-7,.eLpUJW .uikit-col-lg-8,.eLpUJW .uikit-col-lg-9,.eLpUJW .uikit-col-lg-10,.eLpUJW .uikit-col-lg-11,.eLpUJW .uikit-col-lg-12,.eLpUJW .uikit-col-lg-13,.eLpUJW .uikit-col-lg-14,.eLpUJW .uikit-col-lg-15,.eLpUJW .uikit-col-lg-16,.eLpUJW .uikit-col-lg,.eLpUJW .uikit-col-lg-auto,.eLpUJW .uikit-col-xl-1,.eLpUJW .uikit-col-xl-2,.eLpUJW .uikit-col-xl-3,.eLpUJW .uikit-col-xl-4,.eLpUJW .uikit-col-xl-5,.eLpUJW .uikit-col-xl-6,.eLpUJW .uikit-col-xl-7,.eLpUJW .uikit-col-xl-8,.eLpUJW .uikit-col-xl-9,.eLpUJW .uikit-col-xl-10,.eLpUJW .uikit-col-xl-11,.eLpUJW .uikit-col-xl-12,.eLpUJW .uikit-col-xl-13,.eLpUJW .uikit-col-xl-14,.eLpUJW .uikit-col-xl-15,.eLpUJW .uikit-col-xl-16,.eLpUJW .uikit-col-xl,.eLpUJW .uikit-col-xl-auto{box-sizing:border-box;position:relative;width:100%;padding-right:16px;padding-left:16px;}/*!sc*/\n.eLpUJW .uikit-col{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%;}/*!sc*/\n.eLpUJW .uikit-row-cols-1 > *{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}/*!sc*/\n.eLpUJW .uikit-row-cols-2 > *{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}/*!sc*/\n.eLpUJW .uikit-row-cols-3 > *{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%;}/*!sc*/\n.eLpUJW .uikit-row-cols-4 > *{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}/*!sc*/\n.eLpUJW .uikit-row-cols-5 > *{-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%;}/*!sc*/\n.eLpUJW .uikit-row-cols-6 > *{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%;}/*!sc*/\n.eLpUJW .uikit-col-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%;}/*!sc*/\n.eLpUJW .uikit-col-1{-webkit-flex:0 0 6.25%;-ms-flex:0 0 6.25%;flex:0 0 6.25%;max-width:6.25%;}/*!sc*/\n.eLpUJW .uikit-col-2{-webkit-flex:0 0 12.5%;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%;}/*!sc*/\n.eLpUJW .uikit-col-3{-webkit-flex:0 0 18.75%;-ms-flex:0 0 18.75%;flex:0 0 18.75%;max-width:18.75%;}/*!sc*/\n.eLpUJW .uikit-col-4{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}/*!sc*/\n.eLpUJW .uikit-col-5{-webkit-flex:0 0 31.25%;-ms-flex:0 0 31.25%;flex:0 0 31.25%;max-width:31.25%;}/*!sc*/\n.eLpUJW .uikit-col-6{-webkit-flex:0 0 37.5%;-ms-flex:0 0 37.5%;flex:0 0 37.5%;max-width:37.5%;}/*!sc*/\n.eLpUJW .uikit-col-7{-webkit-flex:0 0 43.75%;-ms-flex:0 0 43.75%;flex:0 0 43.75%;max-width:43.75%;}/*!sc*/\n.eLpUJW .uikit-col-8{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}/*!sc*/\n.eLpUJW .uikit-col-9{-webkit-flex:0 0 56.25%;-ms-flex:0 0 56.25%;flex:0 0 56.25%;max-width:56.25%;}/*!sc*/\n.eLpUJW .uikit-col-10{-webkit-flex:0 0 62.5%;-ms-flex:0 0 62.5%;flex:0 0 62.5%;max-width:62.5%;}/*!sc*/\n.eLpUJW .uikit-col-11{-webkit-flex:0 0 68.75%;-ms-flex:0 0 68.75%;flex:0 0 68.75%;max-width:68.75%;}/*!sc*/\n.eLpUJW .uikit-col-12{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;}/*!sc*/\n.eLpUJW .uikit-col-13{-webkit-flex:0 0 81.25%;-ms-flex:0 0 81.25%;flex:0 0 81.25%;max-width:81.25%;}/*!sc*/\n.eLpUJW .uikit-col-14{-webkit-flex:0 0 87.5%;-ms-flex:0 0 87.5%;flex:0 0 87.5%;max-width:87.5%;}/*!sc*/\n.eLpUJW .uikit-col-15{-webkit-flex:0 0 93.75%;-ms-flex:0 0 93.75%;flex:0 0 93.75%;max-width:93.75%;}/*!sc*/\n.eLpUJW .uikit-col-16{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}/*!sc*/\n.eLpUJW .uikit-order-first{-webkit-order:-1;-ms-flex-order:-1;order:-1;}/*!sc*/\n.eLpUJW .uikit-order-last{-webkit-order:17;-ms-flex-order:17;order:17;}/*!sc*/\n.eLpUJW .uikit-order-0{-webkit-order:0;-ms-flex-order:0;order:0;}/*!sc*/\n.eLpUJW .uikit-order-1{-webkit-order:1;-ms-flex-order:1;order:1;}/*!sc*/\n.eLpUJW .uikit-order-2{-webkit-order:2;-ms-flex-order:2;order:2;}/*!sc*/\n.eLpUJW .uikit-order-3{-webkit-order:3;-ms-flex-order:3;order:3;}/*!sc*/\n.eLpUJW .uikit-order-4{-webkit-order:4;-ms-flex-order:4;order:4;}/*!sc*/\n.eLpUJW .uikit-order-5{-webkit-order:5;-ms-flex-order:5;order:5;}/*!sc*/\n.eLpUJW .uikit-order-6{-webkit-order:6;-ms-flex-order:6;order:6;}/*!sc*/\n.eLpUJW .uikit-order-7{-webkit-order:7;-ms-flex-order:7;order:7;}/*!sc*/\n.eLpUJW .uikit-order-8{-webkit-order:8;-ms-flex-order:8;order:8;}/*!sc*/\n.eLpUJW .uikit-order-9{-webkit-order:9;-ms-flex-order:9;order:9;}/*!sc*/\n.eLpUJW .uikit-order-10{-webkit-order:10;-ms-flex-order:10;order:10;}/*!sc*/\n.eLpUJW .uikit-order-11{-webkit-order:11;-ms-flex-order:11;order:11;}/*!sc*/\n.eLpUJW .uikit-order-12{-webkit-order:12;-ms-flex-order:12;order:12;}/*!sc*/\n.eLpUJW .uikit-order-13{-webkit-order:13;-ms-flex-order:13;order:13;}/*!sc*/\n.eLpUJW .uikit-order-14{-webkit-order:14;-ms-flex-order:14;order:14;}/*!sc*/\n.eLpUJW .uikit-order-15{-webkit-order:15;-ms-flex-order:15;order:15;}/*!sc*/\n.eLpUJW .uikit-order-16{-webkit-order:16;-ms-flex-order:16;order:16;}/*!sc*/\n.eLpUJW .uikit-offset-1{margin-left:6.25%;}/*!sc*/\n.eLpUJW .uikit-offset-2{margin-left:12.5%;}/*!sc*/\n.eLpUJW .uikit-offset-3{margin-left:18.75%;}/*!sc*/\n.eLpUJW .uikit-offset-4{margin-left:25%;}/*!sc*/\n.eLpUJW .uikit-offset-5{margin-left:31.25%;}/*!sc*/\n.eLpUJW .uikit-offset-6{margin-left:37.5%;}/*!sc*/\n.eLpUJW .uikit-offset-7{margin-left:43.75%;}/*!sc*/\n.eLpUJW .uikit-offset-8{margin-left:50%;}/*!sc*/\n.eLpUJW .uikit-offset-9{margin-left:56.25%;}/*!sc*/\n.eLpUJW .uikit-offset-10{margin-left:62.5%;}/*!sc*/\n.eLpUJW .uikit-offset-11{margin-left:68.75%;}/*!sc*/\n.eLpUJW .uikit-offset-12{margin-left:75%;}/*!sc*/\n.eLpUJW .uikit-offset-13{margin-left:81.25%;}/*!sc*/\n.eLpUJW .uikit-offset-14{margin-left:87.5%;}/*!sc*/\n.eLpUJW .uikit-offset-15{margin-left:93.75%;}/*!sc*/\n@media (min-width:768px){.eLpUJW .uikit-col-sm{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%;}.eLpUJW .uikit-row-cols-sm-1 > *{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-row-cols-sm-2 > *{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-row-cols-sm-3 > *{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%;}.eLpUJW .uikit-row-cols-sm-4 > *{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-row-cols-sm-5 > *{-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%;}.eLpUJW .uikit-row-cols-sm-6 > *{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%;}.eLpUJW .uikit-col-sm-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%;}.eLpUJW .uikit-col-sm-1{-webkit-flex:0 0 6.25%;-ms-flex:0 0 6.25%;flex:0 0 6.25%;max-width:6.25%;}.eLpUJW .uikit-col-sm-2{-webkit-flex:0 0 12.5%;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%;}.eLpUJW .uikit-col-sm-3{-webkit-flex:0 0 18.75%;-ms-flex:0 0 18.75%;flex:0 0 18.75%;max-width:18.75%;}.eLpUJW .uikit-col-sm-4{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-col-sm-5{-webkit-flex:0 0 31.25%;-ms-flex:0 0 31.25%;flex:0 0 31.25%;max-width:31.25%;}.eLpUJW .uikit-col-sm-6{-webkit-flex:0 0 37.5%;-ms-flex:0 0 37.5%;flex:0 0 37.5%;max-width:37.5%;}.eLpUJW .uikit-col-sm-7{-webkit-flex:0 0 43.75%;-ms-flex:0 0 43.75%;flex:0 0 43.75%;max-width:43.75%;}.eLpUJW .uikit-col-sm-8{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-col-sm-9{-webkit-flex:0 0 56.25%;-ms-flex:0 0 56.25%;flex:0 0 56.25%;max-width:56.25%;}.eLpUJW .uikit-col-sm-10{-webkit-flex:0 0 62.5%;-ms-flex:0 0 62.5%;flex:0 0 62.5%;max-width:62.5%;}.eLpUJW .uikit-col-sm-11{-webkit-flex:0 0 68.75%;-ms-flex:0 0 68.75%;flex:0 0 68.75%;max-width:68.75%;}.eLpUJW .uikit-col-sm-12{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;}.eLpUJW .uikit-col-sm-13{-webkit-flex:0 0 81.25%;-ms-flex:0 0 81.25%;flex:0 0 81.25%;max-width:81.25%;}.eLpUJW .uikit-col-sm-14{-webkit-flex:0 0 87.5%;-ms-flex:0 0 87.5%;flex:0 0 87.5%;max-width:87.5%;}.eLpUJW .uikit-col-sm-15{-webkit-flex:0 0 93.75%;-ms-flex:0 0 93.75%;flex:0 0 93.75%;max-width:93.75%;}.eLpUJW .uikit-col-sm-16{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-order-sm-first{-webkit-order:-1;-ms-flex-order:-1;order:-1;}.eLpUJW .uikit-order-sm-last{-webkit-order:17;-ms-flex-order:17;order:17;}.eLpUJW .uikit-order-sm-0{-webkit-order:0;-ms-flex-order:0;order:0;}.eLpUJW .uikit-order-sm-1{-webkit-order:1;-ms-flex-order:1;order:1;}.eLpUJW .uikit-order-sm-2{-webkit-order:2;-ms-flex-order:2;order:2;}.eLpUJW .uikit-order-sm-3{-webkit-order:3;-ms-flex-order:3;order:3;}.eLpUJW .uikit-order-sm-4{-webkit-order:4;-ms-flex-order:4;order:4;}.eLpUJW .uikit-order-sm-5{-webkit-order:5;-ms-flex-order:5;order:5;}.eLpUJW .uikit-order-sm-6{-webkit-order:6;-ms-flex-order:6;order:6;}.eLpUJW .uikit-order-sm-7{-webkit-order:7;-ms-flex-order:7;order:7;}.eLpUJW .uikit-order-sm-8{-webkit-order:8;-ms-flex-order:8;order:8;}.eLpUJW .uikit-order-sm-9{-webkit-order:9;-ms-flex-order:9;order:9;}.eLpUJW .uikit-order-sm-10{-webkit-order:10;-ms-flex-order:10;order:10;}.eLpUJW .uikit-order-sm-11{-webkit-order:11;-ms-flex-order:11;order:11;}.eLpUJW .uikit-order-sm-12{-webkit-order:12;-ms-flex-order:12;order:12;}.eLpUJW .uikit-order-sm-13{-webkit-order:13;-ms-flex-order:13;order:13;}.eLpUJW .uikit-order-sm-14{-webkit-order:14;-ms-flex-order:14;order:14;}.eLpUJW .uikit-order-sm-15{-webkit-order:15;-ms-flex-order:15;order:15;}.eLpUJW .uikit-order-sm-16{-webkit-order:16;-ms-flex-order:16;order:16;}.eLpUJW .uikit-offset-sm-0{margin-left:0;}.eLpUJW .uikit-offset-sm-1{margin-left:6.25%;}.eLpUJW .uikit-offset-sm-2{margin-left:12.5%;}.eLpUJW .uikit-offset-sm-3{margin-left:18.75%;}.eLpUJW .uikit-offset-sm-4{margin-left:25%;}.eLpUJW .uikit-offset-sm-5{margin-left:31.25%;}.eLpUJW .uikit-offset-sm-6{margin-left:37.5%;}.eLpUJW .uikit-offset-sm-7{margin-left:43.75%;}.eLpUJW .uikit-offset-sm-8{margin-left:50%;}.eLpUJW .uikit-offset-sm-9{margin-left:56.25%;}.eLpUJW .uikit-offset-sm-10{margin-left:62.5%;}.eLpUJW .uikit-offset-sm-11{margin-left:68.75%;}.eLpUJW .uikit-offset-sm-12{margin-left:75%;}.eLpUJW .uikit-offset-sm-13{margin-left:81.25%;}.eLpUJW .uikit-offset-sm-14{margin-left:87.5%;}.eLpUJW .uikit-offset-sm-15{margin-left:93.75%;}}/*!sc*/\n@media (min-width:1152px){.eLpUJW .uikit-col-md{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%;}.eLpUJW .uikit-row-cols-md-1 > *{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-row-cols-md-2 > *{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-row-cols-md-3 > *{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%;}.eLpUJW .uikit-row-cols-md-4 > *{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-row-cols-md-5 > *{-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%;}.eLpUJW .uikit-row-cols-md-6 > *{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%;}.eLpUJW .uikit-col-md-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%;}.eLpUJW .uikit-col-md-1{-webkit-flex:0 0 6.25%;-ms-flex:0 0 6.25%;flex:0 0 6.25%;max-width:6.25%;}.eLpUJW .uikit-col-md-2{-webkit-flex:0 0 12.5%;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%;}.eLpUJW .uikit-col-md-3{-webkit-flex:0 0 18.75%;-ms-flex:0 0 18.75%;flex:0 0 18.75%;max-width:18.75%;}.eLpUJW .uikit-col-md-4{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-col-md-5{-webkit-flex:0 0 31.25%;-ms-flex:0 0 31.25%;flex:0 0 31.25%;max-width:31.25%;}.eLpUJW .uikit-col-md-6{-webkit-flex:0 0 37.5%;-ms-flex:0 0 37.5%;flex:0 0 37.5%;max-width:37.5%;}.eLpUJW .uikit-col-md-7{-webkit-flex:0 0 43.75%;-ms-flex:0 0 43.75%;flex:0 0 43.75%;max-width:43.75%;}.eLpUJW .uikit-col-md-8{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-col-md-9{-webkit-flex:0 0 56.25%;-ms-flex:0 0 56.25%;flex:0 0 56.25%;max-width:56.25%;}.eLpUJW .uikit-col-md-10{-webkit-flex:0 0 62.5%;-ms-flex:0 0 62.5%;flex:0 0 62.5%;max-width:62.5%;}.eLpUJW .uikit-col-md-11{-webkit-flex:0 0 68.75%;-ms-flex:0 0 68.75%;flex:0 0 68.75%;max-width:68.75%;}.eLpUJW .uikit-col-md-12{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;}.eLpUJW .uikit-col-md-13{-webkit-flex:0 0 81.25%;-ms-flex:0 0 81.25%;flex:0 0 81.25%;max-width:81.25%;}.eLpUJW .uikit-col-md-14{-webkit-flex:0 0 87.5%;-ms-flex:0 0 87.5%;flex:0 0 87.5%;max-width:87.5%;}.eLpUJW .uikit-col-md-15{-webkit-flex:0 0 93.75%;-ms-flex:0 0 93.75%;flex:0 0 93.75%;max-width:93.75%;}.eLpUJW .uikit-col-md-16{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-order-md-first{-webkit-order:-1;-ms-flex-order:-1;order:-1;}.eLpUJW .uikit-order-md-last{-webkit-order:17;-ms-flex-order:17;order:17;}.eLpUJW .uikit-order-md-0{-webkit-order:0;-ms-flex-order:0;order:0;}.eLpUJW .uikit-order-md-1{-webkit-order:1;-ms-flex-order:1;order:1;}.eLpUJW .uikit-order-md-2{-webkit-order:2;-ms-flex-order:2;order:2;}.eLpUJW .uikit-order-md-3{-webkit-order:3;-ms-flex-order:3;order:3;}.eLpUJW .uikit-order-md-4{-webkit-order:4;-ms-flex-order:4;order:4;}.eLpUJW .uikit-order-md-5{-webkit-order:5;-ms-flex-order:5;order:5;}.eLpUJW .uikit-order-md-6{-webkit-order:6;-ms-flex-order:6;order:6;}.eLpUJW .uikit-order-md-7{-webkit-order:7;-ms-flex-order:7;order:7;}.eLpUJW .uikit-order-md-8{-webkit-order:8;-ms-flex-order:8;order:8;}.eLpUJW .uikit-order-md-9{-webkit-order:9;-ms-flex-order:9;order:9;}.eLpUJW .uikit-order-md-10{-webkit-order:10;-ms-flex-order:10;order:10;}.eLpUJW .uikit-order-md-11{-webkit-order:11;-ms-flex-order:11;order:11;}.eLpUJW .uikit-order-md-12{-webkit-order:12;-ms-flex-order:12;order:12;}.eLpUJW .uikit-order-md-13{-webkit-order:13;-ms-flex-order:13;order:13;}.eLpUJW .uikit-order-md-14{-webkit-order:14;-ms-flex-order:14;order:14;}.eLpUJW .uikit-order-md-15{-webkit-order:15;-ms-flex-order:15;order:15;}.eLpUJW .uikit-order-md-16{-webkit-order:16;-ms-flex-order:16;order:16;}.eLpUJW .uikit-offset-md-0{margin-left:0;}.eLpUJW .uikit-offset-md-1{margin-left:6.25%;}.eLpUJW .uikit-offset-md-2{margin-left:12.5%;}.eLpUJW .uikit-offset-md-3{margin-left:18.75%;}.eLpUJW .uikit-offset-md-4{margin-left:25%;}.eLpUJW .uikit-offset-md-5{margin-left:31.25%;}.eLpUJW .uikit-offset-md-6{margin-left:37.5%;}.eLpUJW .uikit-offset-md-7{margin-left:43.75%;}.eLpUJW .uikit-offset-md-8{margin-left:50%;}.eLpUJW .uikit-offset-md-9{margin-left:56.25%;}.eLpUJW .uikit-offset-md-10{margin-left:62.5%;}.eLpUJW .uikit-offset-md-11{margin-left:68.75%;}.eLpUJW .uikit-offset-md-12{margin-left:75%;}.eLpUJW .uikit-offset-md-13{margin-left:81.25%;}.eLpUJW .uikit-offset-md-14{margin-left:87.5%;}.eLpUJW .uikit-offset-md-15{margin-left:93.75%;}}/*!sc*/\n@media (min-width:1248px){.eLpUJW .uikit-col-lg{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%;}.eLpUJW .uikit-row-cols-lg-1 > *{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-row-cols-lg-2 > *{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-row-cols-lg-3 > *{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%;}.eLpUJW .uikit-row-cols-lg-4 > *{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-row-cols-lg-5 > *{-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%;}.eLpUJW .uikit-row-cols-lg-6 > *{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%;}.eLpUJW .uikit-col-lg-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%;}.eLpUJW .uikit-col-lg-1{-webkit-flex:0 0 6.25%;-ms-flex:0 0 6.25%;flex:0 0 6.25%;max-width:6.25%;}.eLpUJW .uikit-col-lg-2{-webkit-flex:0 0 12.5%;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%;}.eLpUJW .uikit-col-lg-3{-webkit-flex:0 0 18.75%;-ms-flex:0 0 18.75%;flex:0 0 18.75%;max-width:18.75%;}.eLpUJW .uikit-col-lg-4{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-col-lg-5{-webkit-flex:0 0 31.25%;-ms-flex:0 0 31.25%;flex:0 0 31.25%;max-width:31.25%;}.eLpUJW .uikit-col-lg-6{-webkit-flex:0 0 37.5%;-ms-flex:0 0 37.5%;flex:0 0 37.5%;max-width:37.5%;}.eLpUJW .uikit-col-lg-7{-webkit-flex:0 0 43.75%;-ms-flex:0 0 43.75%;flex:0 0 43.75%;max-width:43.75%;}.eLpUJW .uikit-col-lg-8{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-col-lg-9{-webkit-flex:0 0 56.25%;-ms-flex:0 0 56.25%;flex:0 0 56.25%;max-width:56.25%;}.eLpUJW .uikit-col-lg-10{-webkit-flex:0 0 62.5%;-ms-flex:0 0 62.5%;flex:0 0 62.5%;max-width:62.5%;}.eLpUJW .uikit-col-lg-11{-webkit-flex:0 0 68.75%;-ms-flex:0 0 68.75%;flex:0 0 68.75%;max-width:68.75%;}.eLpUJW .uikit-col-lg-12{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;}.eLpUJW .uikit-col-lg-13{-webkit-flex:0 0 81.25%;-ms-flex:0 0 81.25%;flex:0 0 81.25%;max-width:81.25%;}.eLpUJW .uikit-col-lg-14{-webkit-flex:0 0 87.5%;-ms-flex:0 0 87.5%;flex:0 0 87.5%;max-width:87.5%;}.eLpUJW .uikit-col-lg-15{-webkit-flex:0 0 93.75%;-ms-flex:0 0 93.75%;flex:0 0 93.75%;max-width:93.75%;}.eLpUJW .uikit-col-lg-16{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-order-lg-first{-webkit-order:-1;-ms-flex-order:-1;order:-1;}.eLpUJW .uikit-order-lg-last{-webkit-order:17;-ms-flex-order:17;order:17;}.eLpUJW .uikit-order-lg-0{-webkit-order:0;-ms-flex-order:0;order:0;}.eLpUJW .uikit-order-lg-1{-webkit-order:1;-ms-flex-order:1;order:1;}.eLpUJW .uikit-order-lg-2{-webkit-order:2;-ms-flex-order:2;order:2;}.eLpUJW .uikit-order-lg-3{-webkit-order:3;-ms-flex-order:3;order:3;}.eLpUJW .uikit-order-lg-4{-webkit-order:4;-ms-flex-order:4;order:4;}.eLpUJW .uikit-order-lg-5{-webkit-order:5;-ms-flex-order:5;order:5;}.eLpUJW .uikit-order-lg-6{-webkit-order:6;-ms-flex-order:6;order:6;}.eLpUJW .uikit-order-lg-7{-webkit-order:7;-ms-flex-order:7;order:7;}.eLpUJW .uikit-order-lg-8{-webkit-order:8;-ms-flex-order:8;order:8;}.eLpUJW .uikit-order-lg-9{-webkit-order:9;-ms-flex-order:9;order:9;}.eLpUJW .uikit-order-lg-10{-webkit-order:10;-ms-flex-order:10;order:10;}.eLpUJW .uikit-order-lg-11{-webkit-order:11;-ms-flex-order:11;order:11;}.eLpUJW .uikit-order-lg-12{-webkit-order:12;-ms-flex-order:12;order:12;}.eLpUJW .uikit-order-lg-13{-webkit-order:13;-ms-flex-order:13;order:13;}.eLpUJW .uikit-order-lg-14{-webkit-order:14;-ms-flex-order:14;order:14;}.eLpUJW .uikit-order-lg-15{-webkit-order:15;-ms-flex-order:15;order:15;}.eLpUJW .uikit-order-lg-16{-webkit-order:16;-ms-flex-order:16;order:16;}.eLpUJW .uikit-offset-lg-0{margin-left:0;}.eLpUJW .uikit-offset-lg-1{margin-left:6.25%;}.eLpUJW .uikit-offset-lg-2{margin-left:12.5%;}.eLpUJW .uikit-offset-lg-3{margin-left:18.75%;}.eLpUJW .uikit-offset-lg-4{margin-left:25%;}.eLpUJW .uikit-offset-lg-5{margin-left:31.25%;}.eLpUJW .uikit-offset-lg-6{margin-left:37.5%;}.eLpUJW .uikit-offset-lg-7{margin-left:43.75%;}.eLpUJW .uikit-offset-lg-8{margin-left:50%;}.eLpUJW .uikit-offset-lg-9{margin-left:56.25%;}.eLpUJW .uikit-offset-lg-10{margin-left:62.5%;}.eLpUJW .uikit-offset-lg-11{margin-left:68.75%;}.eLpUJW .uikit-offset-lg-12{margin-left:75%;}.eLpUJW .uikit-offset-lg-13{margin-left:81.25%;}.eLpUJW .uikit-offset-lg-14{margin-left:87.5%;}.eLpUJW .uikit-offset-lg-15{margin-left:93.75%;}}/*!sc*/\n@media (min-width:1376px){.eLpUJW .uikit-col-xl{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%;}.eLpUJW .uikit-row-cols-xl-1 > *{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-row-cols-xl-2 > *{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-row-cols-xl-3 > *{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%;}.eLpUJW .uikit-row-cols-xl-4 > *{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-row-cols-xl-5 > *{-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%;}.eLpUJW .uikit-row-cols-xl-6 > *{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%;}.eLpUJW .uikit-col-xl-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%;}.eLpUJW .uikit-col-xl-1{-webkit-flex:0 0 6.25%;-ms-flex:0 0 6.25%;flex:0 0 6.25%;max-width:6.25%;}.eLpUJW .uikit-col-xl-2{-webkit-flex:0 0 12.5%;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%;}.eLpUJW .uikit-col-xl-3{-webkit-flex:0 0 18.75%;-ms-flex:0 0 18.75%;flex:0 0 18.75%;max-width:18.75%;}.eLpUJW .uikit-col-xl-4{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-col-xl-5{-webkit-flex:0 0 31.25%;-ms-flex:0 0 31.25%;flex:0 0 31.25%;max-width:31.25%;}.eLpUJW .uikit-col-xl-6{-webkit-flex:0 0 37.5%;-ms-flex:0 0 37.5%;flex:0 0 37.5%;max-width:37.5%;}.eLpUJW .uikit-col-xl-7{-webkit-flex:0 0 43.75%;-ms-flex:0 0 43.75%;flex:0 0 43.75%;max-width:43.75%;}.eLpUJW .uikit-col-xl-8{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-col-xl-9{-webkit-flex:0 0 56.25%;-ms-flex:0 0 56.25%;flex:0 0 56.25%;max-width:56.25%;}.eLpUJW .uikit-col-xl-10{-webkit-flex:0 0 62.5%;-ms-flex:0 0 62.5%;flex:0 0 62.5%;max-width:62.5%;}.eLpUJW .uikit-col-xl-11{-webkit-flex:0 0 68.75%;-ms-flex:0 0 68.75%;flex:0 0 68.75%;max-width:68.75%;}.eLpUJW .uikit-col-xl-12{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;}.eLpUJW .uikit-col-xl-13{-webkit-flex:0 0 81.25%;-ms-flex:0 0 81.25%;flex:0 0 81.25%;max-width:81.25%;}.eLpUJW .uikit-col-xl-14{-webkit-flex:0 0 87.5%;-ms-flex:0 0 87.5%;flex:0 0 87.5%;max-width:87.5%;}.eLpUJW .uikit-col-xl-15{-webkit-flex:0 0 93.75%;-ms-flex:0 0 93.75%;flex:0 0 93.75%;max-width:93.75%;}.eLpUJW .uikit-col-xl-16{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-order-xl-first{-webkit-order:-1;-ms-flex-order:-1;order:-1;}.eLpUJW .uikit-order-xl-last{-webkit-order:17;-ms-flex-order:17;order:17;}.eLpUJW .uikit-order-xl-0{-webkit-order:0;-ms-flex-order:0;order:0;}.eLpUJW .uikit-order-xl-1{-webkit-order:1;-ms-flex-order:1;order:1;}.eLpUJW .uikit-order-xl-2{-webkit-order:2;-ms-flex-order:2;order:2;}.eLpUJW .uikit-order-xl-3{-webkit-order:3;-ms-flex-order:3;order:3;}.eLpUJW .uikit-order-xl-4{-webkit-order:4;-ms-flex-order:4;order:4;}.eLpUJW .uikit-order-xl-5{-webkit-order:5;-ms-flex-order:5;order:5;}.eLpUJW .uikit-order-xl-6{-webkit-order:6;-ms-flex-order:6;order:6;}.eLpUJW .uikit-order-xl-7{-webkit-order:7;-ms-flex-order:7;order:7;}.eLpUJW .uikit-order-xl-8{-webkit-order:8;-ms-flex-order:8;order:8;}.eLpUJW .uikit-order-xl-9{-webkit-order:9;-ms-flex-order:9;order:9;}.eLpUJW .uikit-order-xl-10{-webkit-order:10;-ms-flex-order:10;order:10;}.eLpUJW .uikit-order-xl-11{-webkit-order:11;-ms-flex-order:11;order:11;}.eLpUJW .uikit-order-xl-12{-webkit-order:12;-ms-flex-order:12;order:12;}.eLpUJW .uikit-order-xl-13{-webkit-order:13;-ms-flex-order:13;order:13;}.eLpUJW .uikit-order-xl-14{-webkit-order:14;-ms-flex-order:14;order:14;}.eLpUJW .uikit-order-xl-15{-webkit-order:15;-ms-flex-order:15;order:15;}.eLpUJW .uikit-order-xl-16{-webkit-order:16;-ms-flex-order:16;order:16;}.eLpUJW .uikit-offset-xl-0{margin-left:0;}.eLpUJW .uikit-offset-xl-1{margin-left:6.25%;}.eLpUJW .uikit-offset-xl-2{margin-left:12.5%;}.eLpUJW .uikit-offset-xl-3{margin-left:18.75%;}.eLpUJW .uikit-offset-xl-4{margin-left:25%;}.eLpUJW .uikit-offset-xl-5{margin-left:31.25%;}.eLpUJW .uikit-offset-xl-6{margin-left:37.5%;}.eLpUJW .uikit-offset-xl-7{margin-left:43.75%;}.eLpUJW .uikit-offset-xl-8{margin-left:50%;}.eLpUJW .uikit-offset-xl-9{margin-left:56.25%;}.eLpUJW .uikit-offset-xl-10{margin-left:62.5%;}.eLpUJW .uikit-offset-xl-11{margin-left:68.75%;}.eLpUJW .uikit-offset-xl-12{margin-left:75%;}.eLpUJW .uikit-offset-xl-13{margin-left:81.25%;}.eLpUJW .uikit-offset-xl-14{margin-left:87.5%;}.eLpUJW .uikit-offset-xl-15{margin-left:93.75%;}}/*!sc*/\n.eLpUJW .flex-row{-webkit-flex-direction:row !important;-ms-flex-direction:row !important;flex-direction:row !important;}/*!sc*/\n.eLpUJW .flex-column{-webkit-flex-direction:column !important;-ms-flex-direction:column !important;flex-direction:column !important;}/*!sc*/\n.eLpUJW .flex-row-reverse{-webkit-flex-direction:row-reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important;}/*!sc*/\n.eLpUJW .flex-column-reverse{-webkit-flex-direction:column-reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important;}/*!sc*/\n.eLpUJW .flex-wrap{-webkit-flex-wrap:wrap !important;-ms-flex-wrap:wrap !important;flex-wrap:wrap !important;}/*!sc*/\n.eLpUJW .flex-nowrap{-webkit-flex-wrap:nowrap !important;-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important;}/*!sc*/\n.eLpUJW .flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse !important;-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important;}/*!sc*/\n.eLpUJW .flex-fill{-webkit-flex:1 1 auto !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important;}/*!sc*/\n.eLpUJW .flex-grow-0{-webkit-box-flex:0 !important;-webkit-flex-grow:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important;}/*!sc*/\n.eLpUJW .flex-grow-1{-webkit-box-flex:1 !important;-webkit-flex-grow:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important;}/*!sc*/\n.eLpUJW .flex-shrink-0{-webkit-flex-shrink:0 !important;-ms-flex-negative:0 !important;flex-shrink:0 !important;}/*!sc*/\n.eLpUJW .flex-shrink-1{-webkit-flex-shrink:1 !important;-ms-flex-negative:1 !important;flex-shrink:1 !important;}/*!sc*/\n.eLpUJW .justify-content-start{-webkit-box-pack:start !important;-webkit-justify-content:flex-start !important;-ms-flex-pack:start !important;justify-content:flex-start !important;}/*!sc*/\n.eLpUJW .justify-content-end{-webkit-box-pack:end !important;-webkit-justify-content:flex-end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;}/*!sc*/\n.eLpUJW .justify-content-center{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}/*!sc*/\n.eLpUJW .justify-content-between{-webkit-box-pack:justify !important;-webkit-justify-content:space-between !important;-ms-flex-pack:justify !important;justify-content:space-between !important;}/*!sc*/\n.eLpUJW .justify-content-around{-webkit-box-pack:space-around !important;-webkit-justify-content:space-around !important;-ms-flex-pack:space-around !important;justify-content:space-around !important;}/*!sc*/\n.eLpUJW .align-items-start{-webkit-align-items:flex-start !important;-webkit-box-align:flex-start !important;-ms-flex-align:flex-start !important;align-items:flex-start !important;}/*!sc*/\n.eLpUJW .align-items-end{-webkit-align-items:flex-end !important;-webkit-box-align:flex-end !important;-ms-flex-align:flex-end !important;align-items:flex-end !important;}/*!sc*/\n.eLpUJW .align-items-center{-webkit-align-items:center !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important;}/*!sc*/\n.eLpUJW .align-items-baseline{-webkit-align-items:baseline !important;-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important;}/*!sc*/\n.eLpUJW .align-items-stretch{-webkit-align-items:stretch !important;-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important;}/*!sc*/\n.eLpUJW .align-content-start{-webkit-align-content:flex-start !important;-ms-flex-line-pack:start !important;align-content:flex-start !important;}/*!sc*/\n.eLpUJW .align-content-end{-webkit-align-content:flex-end !important;-ms-flex-line-pack:end !important;align-content:flex-end !important;}/*!sc*/\n.eLpUJW .align-content-center{-webkit-align-content:center !important;-ms-flex-line-pack:center !important;align-content:center !important;}/*!sc*/\n.eLpUJW .align-content-between{-webkit-align-content:space-between !important;-ms-flex-line-pack:space-between !important;align-content:space-between !important;}/*!sc*/\n.eLpUJW .align-content-around{-webkit-align-content:space-around !important;-ms-flex-line-pack:space-around !important;align-content:space-around !important;}/*!sc*/\n.eLpUJW .align-content-stretch{-webkit-align-content:stretch !important;-ms-flex-line-pack:stretch !important;align-content:stretch !important;}/*!sc*/\n.eLpUJW .align-self-auto{-webkit-align-self:auto !important;-ms-flex-item-align:auto !important;align-self:auto !important;}/*!sc*/\n.eLpUJW .align-self-start{-webkit-align-self:flex-start !important;-ms-flex-item-align:start !important;align-self:flex-start !important;}/*!sc*/\n.eLpUJW .align-self-end{-webkit-align-self:flex-end !important;-ms-flex-item-align:end !important;align-self:flex-end !important;}/*!sc*/\n.eLpUJW .align-self-center{-webkit-align-self:center !important;-ms-flex-item-align:center !important;align-self:center !important;}/*!sc*/\n.eLpUJW .align-self-baseline{-webkit-align-self:baseline !important;-ms-flex-item-align:baseline !important;align-self:baseline !important;}/*!sc*/\n.eLpUJW .align-self-stretch{-webkit-align-self:stretch !important;-ms-flex-item-align:stretch !important;align-self:stretch !important;}/*!sc*/\n@media (min-width:768px){.eLpUJW .flex-sm-row{-webkit-flex-direction:row !important;-ms-flex-direction:row !important;flex-direction:row !important;}.eLpUJW .flex-sm-column{-webkit-flex-direction:column !important;-ms-flex-direction:column !important;flex-direction:column !important;}.eLpUJW .flex-sm-row-reverse{-webkit-flex-direction:row-reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important;}.eLpUJW .flex-sm-column-reverse{-webkit-flex-direction:column-reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important;}.eLpUJW .flex-sm-wrap{-webkit-flex-wrap:wrap !important;-ms-flex-wrap:wrap !important;flex-wrap:wrap !important;}.eLpUJW .flex-sm-nowrap{-webkit-flex-wrap:nowrap !important;-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important;}.eLpUJW .flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse !important;-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important;}.eLpUJW .flex-sm-fill{-webkit-flex:1 1 auto !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important;}.eLpUJW .flex-sm-grow-0{-webkit-box-flex:0 !important;-webkit-flex-grow:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important;}.eLpUJW .flex-sm-grow-1{-webkit-box-flex:1 !important;-webkit-flex-grow:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important;}.eLpUJW .flex-sm-shrink-0{-webkit-flex-shrink:0 !important;-ms-flex-negative:0 !important;flex-shrink:0 !important;}.eLpUJW .flex-sm-shrink-1{-webkit-flex-shrink:1 !important;-ms-flex-negative:1 !important;flex-shrink:1 !important;}.eLpUJW .justify-content-sm-start{-webkit-box-pack:start !important;-webkit-justify-content:flex-start !important;-ms-flex-pack:start !important;justify-content:flex-start !important;}.eLpUJW .justify-content-sm-end{-webkit-box-pack:end !important;-webkit-justify-content:flex-end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;}.eLpUJW .justify-content-sm-center{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}.eLpUJW .justify-content-sm-between{-webkit-box-pack:justify !important;-webkit-justify-content:space-between !important;-ms-flex-pack:justify !important;justify-content:space-between !important;}.eLpUJW .justify-content-sm-around{-webkit-box-pack:space-around !important;-webkit-justify-content:space-around !important;-ms-flex-pack:space-around !important;justify-content:space-around !important;}.eLpUJW .align-items-sm-start{-webkit-align-items:flex-start !important;-webkit-box-align:flex-start !important;-ms-flex-align:flex-start !important;align-items:flex-start !important;}.eLpUJW .align-items-sm-end{-webkit-align-items:flex-end !important;-webkit-box-align:flex-end !important;-ms-flex-align:flex-end !important;align-items:flex-end !important;}.eLpUJW .align-items-sm-center{-webkit-align-items:center !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important;}.eLpUJW .align-items-sm-baseline{-webkit-align-items:baseline !important;-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important;}.eLpUJW .align-items-sm-stretch{-webkit-align-items:stretch !important;-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important;}.eLpUJW .align-content-sm-start{-webkit-align-content:flex-start !important;-ms-flex-line-pack:start !important;align-content:flex-start !important;}.eLpUJW .align-content-sm-end{-webkit-align-content:flex-end !important;-ms-flex-line-pack:end !important;align-content:flex-end !important;}.eLpUJW .align-content-sm-center{-webkit-align-content:center !important;-ms-flex-line-pack:center !important;align-content:center !important;}.eLpUJW .align-content-sm-between{-webkit-align-content:space-between !important;-ms-flex-line-pack:space-between !important;align-content:space-between !important;}.eLpUJW .align-content-sm-around{-webkit-align-content:space-around !important;-ms-flex-line-pack:space-around !important;align-content:space-around !important;}.eLpUJW .align-content-sm-stretch{-webkit-align-content:stretch !important;-ms-flex-line-pack:stretch !important;align-content:stretch !important;}.eLpUJW .align-self-sm-auto{-webkit-align-self:auto !important;-ms-flex-item-align:auto !important;align-self:auto !important;}.eLpUJW .align-self-sm-start{-webkit-align-self:flex-start !important;-ms-flex-item-align:start !important;align-self:flex-start !important;}.eLpUJW .align-self-sm-end{-webkit-align-self:flex-end !important;-ms-flex-item-align:end !important;align-self:flex-end !important;}.eLpUJW .align-self-sm-center{-webkit-align-self:center !important;-ms-flex-item-align:center !important;align-self:center !important;}.eLpUJW .align-self-sm-baseline{-webkit-align-self:baseline !important;-ms-flex-item-align:baseline !important;align-self:baseline !important;}.eLpUJW .align-self-sm-stretch{-webkit-align-self:stretch !important;-ms-flex-item-align:stretch !important;align-self:stretch !important;}}/*!sc*/\n@media (min-width:1152px){.eLpUJW .flex-md-row{-webkit-flex-direction:row !important;-ms-flex-direction:row !important;flex-direction:row !important;}.eLpUJW .flex-md-column{-webkit-flex-direction:column !important;-ms-flex-direction:column !important;flex-direction:column !important;}.eLpUJW .flex-md-row-reverse{-webkit-flex-direction:row-reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important;}.eLpUJW .flex-md-column-reverse{-webkit-flex-direction:column-reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important;}.eLpUJW .flex-md-wrap{-webkit-flex-wrap:wrap !important;-ms-flex-wrap:wrap !important;flex-wrap:wrap !important;}.eLpUJW .flex-md-nowrap{-webkit-flex-wrap:nowrap !important;-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important;}.eLpUJW .flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse !important;-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important;}.eLpUJW .flex-md-fill{-webkit-flex:1 1 auto !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important;}.eLpUJW .flex-md-grow-0{-webkit-box-flex:0 !important;-webkit-flex-grow:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important;}.eLpUJW .flex-md-grow-1{-webkit-box-flex:1 !important;-webkit-flex-grow:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important;}.eLpUJW .flex-md-shrink-0{-webkit-flex-shrink:0 !important;-ms-flex-negative:0 !important;flex-shrink:0 !important;}.eLpUJW .flex-md-shrink-1{-webkit-flex-shrink:1 !important;-ms-flex-negative:1 !important;flex-shrink:1 !important;}.eLpUJW .justify-content-md-start{-webkit-box-pack:start !important;-webkit-justify-content:flex-start !important;-ms-flex-pack:start !important;justify-content:flex-start !important;}.eLpUJW .justify-content-md-end{-webkit-box-pack:end !important;-webkit-justify-content:flex-end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;}.eLpUJW .justify-content-md-center{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}.eLpUJW .justify-content-md-between{-webkit-box-pack:justify !important;-webkit-justify-content:space-between !important;-ms-flex-pack:justify !important;justify-content:space-between !important;}.eLpUJW .justify-content-md-around{-webkit-box-pack:space-around !important;-webkit-justify-content:space-around !important;-ms-flex-pack:space-around !important;justify-content:space-around !important;}.eLpUJW .align-items-md-start{-webkit-align-items:flex-start !important;-webkit-box-align:flex-start !important;-ms-flex-align:flex-start !important;align-items:flex-start !important;}.eLpUJW .align-items-md-end{-webkit-align-items:flex-end !important;-webkit-box-align:flex-end !important;-ms-flex-align:flex-end !important;align-items:flex-end !important;}.eLpUJW .align-items-md-center{-webkit-align-items:center !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important;}.eLpUJW .align-items-md-baseline{-webkit-align-items:baseline !important;-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important;}.eLpUJW .align-items-md-stretch{-webkit-align-items:stretch !important;-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important;}.eLpUJW .align-content-md-start{-webkit-align-content:flex-start !important;-ms-flex-line-pack:start !important;align-content:flex-start !important;}.eLpUJW .align-content-md-end{-webkit-align-content:flex-end !important;-ms-flex-line-pack:end !important;align-content:flex-end !important;}.eLpUJW .align-content-md-center{-webkit-align-content:center !important;-ms-flex-line-pack:center !important;align-content:center !important;}.eLpUJW .align-content-md-between{-webkit-align-content:space-between !important;-ms-flex-line-pack:space-between !important;align-content:space-between !important;}.eLpUJW .align-content-md-around{-webkit-align-content:space-around !important;-ms-flex-line-pack:space-around !important;align-content:space-around !important;}.eLpUJW .align-content-md-stretch{-webkit-align-content:stretch !important;-ms-flex-line-pack:stretch !important;align-content:stretch !important;}.eLpUJW .align-self-md-auto{-webkit-align-self:auto !important;-ms-flex-item-align:auto !important;align-self:auto !important;}.eLpUJW .align-self-md-start{-webkit-align-self:flex-start !important;-ms-flex-item-align:start !important;align-self:flex-start !important;}.eLpUJW .align-self-md-end{-webkit-align-self:flex-end !important;-ms-flex-item-align:end !important;align-self:flex-end !important;}.eLpUJW .align-self-md-center{-webkit-align-self:center !important;-ms-flex-item-align:center !important;align-self:center !important;}.eLpUJW .align-self-md-baseline{-webkit-align-self:baseline !important;-ms-flex-item-align:baseline !important;align-self:baseline !important;}.eLpUJW .align-self-md-stretch{-webkit-align-self:stretch !important;-ms-flex-item-align:stretch !important;align-self:stretch !important;}}/*!sc*/\n@media (min-width:1248px){.eLpUJW .flex-lg-row{-webkit-flex-direction:row !important;-ms-flex-direction:row !important;flex-direction:row !important;}.eLpUJW .flex-lg-column{-webkit-flex-direction:column !important;-ms-flex-direction:column !important;flex-direction:column !important;}.eLpUJW .flex-lg-row-reverse{-webkit-flex-direction:row-reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important;}.eLpUJW .flex-lg-column-reverse{-webkit-flex-direction:column-reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important;}.eLpUJW .flex-lg-wrap{-webkit-flex-wrap:wrap !important;-ms-flex-wrap:wrap !important;flex-wrap:wrap !important;}.eLpUJW .flex-lg-nowrap{-webkit-flex-wrap:nowrap !important;-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important;}.eLpUJW .flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse !important;-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important;}.eLpUJW .flex-lg-fill{-webkit-flex:1 1 auto !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important;}.eLpUJW .flex-lg-grow-0{-webkit-box-flex:0 !important;-webkit-flex-grow:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important;}.eLpUJW .flex-lg-grow-1{-webkit-box-flex:1 !important;-webkit-flex-grow:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important;}.eLpUJW .flex-lg-shrink-0{-webkit-flex-shrink:0 !important;-ms-flex-negative:0 !important;flex-shrink:0 !important;}.eLpUJW .flex-lg-shrink-1{-webkit-flex-shrink:1 !important;-ms-flex-negative:1 !important;flex-shrink:1 !important;}.eLpUJW .justify-content-lg-start{-webkit-box-pack:start !important;-webkit-justify-content:flex-start !important;-ms-flex-pack:start !important;justify-content:flex-start !important;}.eLpUJW .justify-content-lg-end{-webkit-box-pack:end !important;-webkit-justify-content:flex-end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;}.eLpUJW .justify-content-lg-center{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}.eLpUJW .justify-content-lg-between{-webkit-box-pack:justify !important;-webkit-justify-content:space-between !important;-ms-flex-pack:justify !important;justify-content:space-between !important;}.eLpUJW .justify-content-lg-around{-webkit-box-pack:space-around !important;-webkit-justify-content:space-around !important;-ms-flex-pack:space-around !important;justify-content:space-around !important;}.eLpUJW .align-items-lg-start{-webkit-align-items:flex-start !important;-webkit-box-align:flex-start !important;-ms-flex-align:flex-start !important;align-items:flex-start !important;}.eLpUJW .align-items-lg-end{-webkit-align-items:flex-end !important;-webkit-box-align:flex-end !important;-ms-flex-align:flex-end !important;align-items:flex-end !important;}.eLpUJW .align-items-lg-center{-webkit-align-items:center !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important;}.eLpUJW .align-items-lg-baseline{-webkit-align-items:baseline !important;-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important;}.eLpUJW .align-items-lg-stretch{-webkit-align-items:stretch !important;-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important;}.eLpUJW .align-content-lg-start{-webkit-align-content:flex-start !important;-ms-flex-line-pack:start !important;align-content:flex-start !important;}.eLpUJW .align-content-lg-end{-webkit-align-content:flex-end !important;-ms-flex-line-pack:end !important;align-content:flex-end !important;}.eLpUJW .align-content-lg-center{-webkit-align-content:center !important;-ms-flex-line-pack:center !important;align-content:center !important;}.eLpUJW .align-content-lg-between{-webkit-align-content:space-between !important;-ms-flex-line-pack:space-between !important;align-content:space-between !important;}.eLpUJW .align-content-lg-around{-webkit-align-content:space-around !important;-ms-flex-line-pack:space-around !important;align-content:space-around !important;}.eLpUJW .align-content-lg-stretch{-webkit-align-content:stretch !important;-ms-flex-line-pack:stretch !important;align-content:stretch !important;}.eLpUJW .align-self-lg-auto{-webkit-align-self:auto !important;-ms-flex-item-align:auto !important;align-self:auto !important;}.eLpUJW .align-self-lg-start{-webkit-align-self:flex-start !important;-ms-flex-item-align:start !important;align-self:flex-start !important;}.eLpUJW .align-self-lg-end{-webkit-align-self:flex-end !important;-ms-flex-item-align:end !important;align-self:flex-end !important;}.eLpUJW .align-self-lg-center{-webkit-align-self:center !important;-ms-flex-item-align:center !important;align-self:center !important;}.eLpUJW .align-self-lg-baseline{-webkit-align-self:baseline !important;-ms-flex-item-align:baseline !important;align-self:baseline !important;}.eLpUJW .align-self-lg-stretch{-webkit-align-self:stretch !important;-ms-flex-item-align:stretch !important;align-self:stretch !important;}}/*!sc*/\n@media (min-width:1376px){.eLpUJW .flex-xl-row{-webkit-flex-direction:row !important;-ms-flex-direction:row !important;flex-direction:row !important;}.eLpUJW .flex-xl-column{-webkit-flex-direction:column !important;-ms-flex-direction:column !important;flex-direction:column !important;}.eLpUJW .flex-xl-row-reverse{-webkit-flex-direction:row-reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important;}.eLpUJW .flex-xl-column-reverse{-webkit-flex-direction:column-reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important;}.eLpUJW .flex-xl-wrap{-webkit-flex-wrap:wrap !important;-ms-flex-wrap:wrap !important;flex-wrap:wrap !important;}.eLpUJW .flex-xl-nowrap{-webkit-flex-wrap:nowrap !important;-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important;}.eLpUJW .flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse !important;-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important;}.eLpUJW .flex-xl-fill{-webkit-flex:1 1 auto !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important;}.eLpUJW .flex-xl-grow-0{-webkit-box-flex:0 !important;-webkit-flex-grow:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important;}.eLpUJW .flex-xl-grow-1{-webkit-box-flex:1 !important;-webkit-flex-grow:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important;}.eLpUJW .flex-xl-shrink-0{-webkit-flex-shrink:0 !important;-ms-flex-negative:0 !important;flex-shrink:0 !important;}.eLpUJW .flex-xl-shrink-1{-webkit-flex-shrink:1 !important;-ms-flex-negative:1 !important;flex-shrink:1 !important;}.eLpUJW .justify-content-xl-start{-webkit-box-pack:start !important;-webkit-justify-content:flex-start !important;-ms-flex-pack:start !important;justify-content:flex-start !important;}.eLpUJW .justify-content-xl-end{-webkit-box-pack:end !important;-webkit-justify-content:flex-end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;}.eLpUJW .justify-content-xl-center{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}.eLpUJW .justify-content-xl-between{-webkit-box-pack:justify !important;-webkit-justify-content:space-between !important;-ms-flex-pack:justify !important;justify-content:space-between !important;}.eLpUJW .justify-content-xl-around{-webkit-box-pack:space-around !important;-webkit-justify-content:space-around !important;-ms-flex-pack:space-around !important;justify-content:space-around !important;}.eLpUJW .align-items-xl-start{-webkit-align-items:flex-start !important;-webkit-box-align:flex-start !important;-ms-flex-align:flex-start !important;align-items:flex-start !important;}.eLpUJW .align-items-xl-end{-webkit-align-items:flex-end !important;-webkit-box-align:flex-end !important;-ms-flex-align:flex-end !important;align-items:flex-end !important;}.eLpUJW .align-items-xl-center{-webkit-align-items:center !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important;}.eLpUJW .align-items-xl-baseline{-webkit-align-items:baseline !important;-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important;}.eLpUJW .align-items-xl-stretch{-webkit-align-items:stretch !important;-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important;}.eLpUJW .align-content-xl-start{-webkit-align-content:flex-start !important;-ms-flex-line-pack:start !important;align-content:flex-start !important;}.eLpUJW .align-content-xl-end{-webkit-align-content:flex-end !important;-ms-flex-line-pack:end !important;align-content:flex-end !important;}.eLpUJW .align-content-xl-center{-webkit-align-content:center !important;-ms-flex-line-pack:center !important;align-content:center !important;}.eLpUJW .align-content-xl-between{-webkit-align-content:space-between !important;-ms-flex-line-pack:space-between !important;align-content:space-between !important;}.eLpUJW .align-content-xl-around{-webkit-align-content:space-around !important;-ms-flex-line-pack:space-around !important;align-content:space-around !important;}.eLpUJW .align-content-xl-stretch{-webkit-align-content:stretch !important;-ms-flex-line-pack:stretch !important;align-content:stretch !important;}.eLpUJW .align-self-xl-auto{-webkit-align-self:auto !important;-ms-flex-item-align:auto !important;align-self:auto !important;}.eLpUJW .align-self-xl-start{-webkit-align-self:flex-start !important;-ms-flex-item-align:start !important;align-self:flex-start !important;}.eLpUJW .align-self-xl-end{-webkit-align-self:flex-end !important;-ms-flex-item-align:end !important;align-self:flex-end !important;}.eLpUJW .align-self-xl-center{-webkit-align-self:center !important;-ms-flex-item-align:center !important;align-self:center !important;}.eLpUJW .align-self-xl-baseline{-webkit-align-self:baseline !important;-ms-flex-item-align:baseline !important;align-self:baseline !important;}.eLpUJW .align-self-xl-stretch{-webkit-align-self:stretch !important;-ms-flex-item-align:stretch !important;align-self:stretch !important;}}/*!sc*/\ndata-styled.g41[id="sc-fzqARJ"]{content:"eLpUJW,"}/*!sc*/\n.fCkJVF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;list-style:none;margin:0;padding:0;}/*!sc*/\ndata-styled.g51[id="sc-fzqBkg"]{content:"fCkJVF,"}/*!sc*/\n.gQAZOF{background:transparent;border:0;font-weight:600;font-family:inherit;font-size:14px;padding:1.8rem 1rem 1.8rem 1rem;color:#222531;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:color 250ms ease;transition:color 250ms ease;cursor:pointer;position:relative;z-index:2;}/*!sc*/\n.gQAZOF:hover{outline:none;color:#3861FB;}/*!sc*/\n.gQAZOF:focus{outline:none;}/*!sc*/\ndata-styled.g53[id="sc-fzoxKX"]{content:"gQAZOF,"}/*!sc*/\n.kNKLJw{position:relative;}/*!sc*/\ndata-styled.g54[id="sc-fzoKki"]{content:"kNKLJw,"}/*!sc*/\n.hfPoTr{position:absolute;left:calc(50% + 100px);-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);-webkit-perspective:1500px;-moz-perspective:1500px;-ms-perspective:1500px;perspective:1500px;z-index:999;}/*!sc*/\ndata-styled.g55[id="sc-fzoYkl"]{content:"hfPoTr,"}/*!sc*/\n.BewUF{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-driection:row;-ms-flex-driection:row;flex-driection:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n.BewUF a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.BewUF .coin-logo{height:24px;width:24px;border-radius:12px;}/*!sc*/\ndata-styled.g68[id="sc-fznLPX"]{content:"BewUF,"}/*!sc*/\n.cbJhSy{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}/*!sc*/\n.cbJhSy a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.cbJhSy p{font-size:14px;margin:0 0 0 12px;line-height:16px;}/*!sc*/\n.cbJhSy .coin-item-symbol{margin:0 0 0 6px;font-size:12px;}/*!sc*/\n@media screen and (min-width:768px){.cbJhSy{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.cbJhSy p{margin:0 0 0 5px;line-height:24px;}.cbJhSy .coin-item-symbol{font-size:14px;}}/*!sc*/\ndata-styled.g69[id="sc-fzoaKM"]{content:"cbJhSy,"}/*!sc*/\n.gHzJiR{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\ndata-styled.g70[id="sc-fzomuh"]{content:"gHzJiR,"}/*!sc*/\n.kwdPny{border-radius:4px;padding:0px 6px;display:inline-block;font-size:12px;background:#EFF2F5;margin-left:12px;color:#58667E;}/*!sc*/\n@media screen and (min-width:768px){.kwdPny{display:none;}}/*!sc*/\ndata-styled.g71[id="sc-fzqAui"]{content:"kwdPny,"}/*!sc*/\n.YdPrA{height:6px;border-radius:3px;background:#EFF2F5;position:relative;width:160px;}/*!sc*/\ndata-styled.g87[id="sc-fznzqM"]{content:"YdPrA,"}/*!sc*/\n.hTcCKn{height:6px;border-radius:3px;background:#CFD6E4;width:143px;position:absolute;top:0;left:0;}/*!sc*/\n.hTcEKp{height:6px;border-radius:3px;background:#CFD6E4;width:114px;position:absolute;top:0;left:0;}/*!sc*/\n.hTcFaR{height:6px;border-radius:3px;background:#CFD6E4;width:145px;position:absolute;top:0;left:0;}/*!sc*/\n.cGZXtd{height:6px;border-radius:3px;background:#CFD6E4;width:73px;position:absolute;top:0;left:0;}/*!sc*/\n.hTcEoN{height:6px;border-radius:3px;background:#CFD6E4;width:127px;position:absolute;top:0;left:0;}/*!sc*/\n.cGZXuR{height:6px;border-radius:3px;background:#CFD6E4;width:66px;position:absolute;top:0;left:0;}/*!sc*/\ndata-styled.g88[id="sc-fznOgF"]{content:"hTcCKn,hTcEKp,hTcFaR,cGZXtd,hTcEoN,cGZXuR,"}/*!sc*/\n.cGmhlU{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}/*!sc*/\n.cGmhlU a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\ndata-styled.g89[id="sc-fznYue"]{content:"cGmhlU,"}/*!sc*/\n.brDbgg{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:4px;}/*!sc*/\n.brDbgg a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\ndata-styled.g90[id="sc-fzonjX"]{content:"brDbgg,"}/*!sc*/\n.lewZOv{display:inline-block;padding-top:4px;}/*!sc*/\ndata-styled.g93[id="sc-fzoCCn"]{content:"lewZOv,"}/*!sc*/\n.jPpwSF{box-sizing:border-box;margin:0;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#EFF2F5;border-radius:8px;outline:0;font-weight:600;cursor:pointer;color:#000000;padding:5px 8px;font-size:12px;line-height:22px;}/*!sc*/\n.jPpwSF a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\ndata-styled.g95[id="sc-fzpdbB"]{content:"jPpwSF,"}/*!sc*/\n.ekttti{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding:0 8px 0 0;}/*!sc*/\ndata-styled.g107[id="sc-fznBMq"]{content:"ekttti,"}/*!sc*/\n.dJmEVA{box-sizing:border-box;width:304px;background:#FFF;border-radius:8px;padding:13px 16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;cursor:pointer;}/*!sc*/\ndata-styled.g108[id="sc-fznNvL"]{content:"dJmEVA,"}/*!sc*/\n.dDnRxM{height:64px;width:64px;min-width:64px;border-radius:16px;overflow:hidden;background-image:url("https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/603dd5aeedc95900191eadf4/1614666484628.png");background-size:cover;background-position:center center;}/*!sc*/\n.jDLPo{height:64px;width:64px;min-width:64px;border-radius:16px;overflow:hidden;background-image:url("https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/60386d82bc6ea500157b34fb/1614319262237.png");background-size:cover;background-position:center center;}/*!sc*/\n.cjaGHS{height:64px;width:64px;min-width:64px;border-radius:16px;overflow:hidden;background-image:url("https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/6038d61e3e919b0013d44cf2/1614337604165.png");background-size:cover;background-position:center center;}/*!sc*/\ndata-styled.g109[id="sc-fzocqA"]{content:"dDnRxM,jDLPo,cjaGHS,"}/*!sc*/\n.fjLydT{margin-left:16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/\ndata-styled.g110[id="sc-fzonZV"]{content:"fjLydT,"}/*!sc*/\n.ifuegI{color:#646B80;font-size:12px;margin-bottom:3px;}/*!sc*/\ndata-styled.g111[id="sc-fzqyOu"]{content:"ifuegI,"}/*!sc*/\n.hKVgLq{color:#000;white-space:pre-wrap;font-size:14px;font-weight:500;line-height:1.4;}/*!sc*/\ndata-styled.g112[id="sc-fzqKxP"]{content:"hKVgLq,"}/*!sc*/\n.fsuEer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;padding:8px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;}/*!sc*/\ndata-styled.g117[id="sc-oTbqq"]{content:"fsuEer,"}/*!sc*/\n.eqYpxV{height:30px;width:30px;min-width:30px;background-image:url("https://s2.coinmarketcap.com/static/cloud/img/header-banner/cryptocom.png?_=29bbdee");background-size:cover;background-position:center center;margin-right:10px;}/*!sc*/\ndata-styled.g118[id="sc-paXsP"]{content:"eqYpxV,"}/*!sc*/\n.dAvxTh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/\ndata-styled.g119[id="sc-pjSSY"]{content:"dAvxTh,"}/*!sc*/\n.hQWxaP{color:#000;white-space:pre-wrap;font-size:14px;font-weight:500;line-height:21px;}/*!sc*/\ndata-styled.g120[id="sc-prOVx"]{content:"hQWxaP,"}/*!sc*/\n.frETCJ{color:#646B80;white-space:pre-wrap;font-size:14px;line-height:21px;}/*!sc*/\ndata-styled.g121[id="sc-qQmou"]{content:"frETCJ,"}/*!sc*/\n.gdJhvk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n.gdJhvk .s-area{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:row;-ms-flex:row;flex:row;color:#A6B0C3;margin-top:4px;}/*!sc*/\n.gdJhvk .s-text{color:#A6B0C3;font-weight:600;}/*!sc*/\ndata-styled.g122[id="sc-qYiqT"]{content:"gdJhvk,"}/*!sc*/\n.hCKhjF{display:block;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;}/*!sc*/\ndata-styled.g136[id="sc-pZaHX"]{content:"hCKhjF,"}/*!sc*/\n.hXGkGv{margin:0;padding:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;list-style:none;}/*!sc*/\ndata-styled.g137[id="sc-oTBUA"]{content:"hXGkGv,"}/*!sc*/\n.bSZjap{cursor:pointer;}/*!sc*/\n.bSZjap:hover > div > span{color:#3861FB;}/*!sc*/\ndata-styled.g138[id="sc-pbxSd"]{content:"bSZjap,"}/*!sc*/\n.dmrpMS:hover > a > div > span{color:#3861FB;}/*!sc*/\ndata-styled.g139[id="sc-pjstK"]{content:"dmrpMS,"}/*!sc*/\n.fpBoEr{padding:20px 14px;}/*!sc*/\n.fpBoEr span{-webkit-transition:0.3s;transition:0.3s;}/*!sc*/\ndata-styled.g140[id="sc-prorn"]{content:"fpBoEr,"}/*!sc*/\n.eALoKW{font-size:11px;color:#58667E;margin-right:16px;white-space:nowrap;}/*!sc*/\n.eALoKW a{-webkit-text-decoration:none;text-decoration:none;color:#3861FB;font-weight:500;}/*!sc*/\n.eALoKW:last-of-type{margin-right:0;}/*!sc*/\ndata-styled.g148[id="sc-12ja2s9-0"]{content:"eALoKW,"}/*!sc*/\n.iwazsF{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#FFFFFF;border-radius:5px;border:none;color:#222531;cursor:pointer;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;font-size:12px;font-weight:500;height:100%;line-height:12px;margin:0;padding:5px;vertical-align:baseline;white-space:nowrap;}/*!sc*/\n.iwazsF:focus,.iwazsF:hover{background-color:#EFF2F5;outline:0;}/*!sc*/\ndata-styled.g149[id="sc-10o4ja6-0"]{content:"iwazsF,"}/*!sc*/\n.ihKvrC{background-image:url(https://s2.coinmarketcap.com/static/cloud/img/fiat-flags/USD.svg);background-position:center;background-size:cover;background-repeat:no-repeat;display:block;height:15px;width:15px;border:1px solid #E4E7EB;border-radius:50%;}/*!sc*/\ndata-styled.g150[id="sc-1ta5cl2-0"]{content:"ihKvrC,"}/*!sc*/\n.ejAOOE{margin:2px 0 0 4px;}/*!sc*/\ndata-styled.g161[id="sc-1l1794m-0"]{content:"ejAOOE,"}/*!sc*/\n.jVkEMh{font-weight:600;}/*!sc*/\ndata-styled.g162[id="sc-1l1794m-1"]{content:"jVkEMh,"}/*!sc*/\n.bMHyH{margin:2px 0 0 4px;}/*!sc*/\ndata-styled.g165[id="sc-1wnc593-0"]{content:"bMHyH,"}/*!sc*/\n.bBcNle{font-weight:600;margin-left:6px;}/*!sc*/\ndata-styled.g166[id="sc-1wnc593-1"]{content:"bBcNle,"}/*!sc*/\n.nItQG{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-left:auto;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n.nItQG a{color:#222531;-webkit-text-decoration:none;text-decoration:none;vertical-align:bottom;}/*!sc*/\n.nItQG a:focus,.nItQG a:hover{color:#3861FB;}/*!sc*/\n.nItQG .right-section{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n.nItQG .nav-item{border-right:1px solid #EFF2F5;white-space:nowrap;}/*!sc*/\ndata-styled.g167[id="gqd5b8-0"]{content:"nItQG,"}/*!sc*/\n.kznmCF .cmc-popover__trigger{height:27px;margin-right:6px;}/*!sc*/\n.kznmCF .cmc-popover__dropdown{background-color:#FFFFFF;border-radius:4px;border:1px solid #F8FAFD;box-shadow:0 2px 10px 0 #EFF2F5;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;padding:15px;width:291px;}/*!sc*/\ndata-styled.g168[id="gqd5b8-1"]{content:"kznmCF,"}/*!sc*/\n.fEixBa .cmc-popover__trigger{height:27px;margin-right:6px;}/*!sc*/\n.fEixBa .cmc-popover__dropdown{background-color:#FFFFFF;border-radius:4px;border:1px solid #F8FAFD;box-shadow:0 2px 10px 0 #EFF2F5;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;padding:15px;width:291px;}/*!sc*/\n.fEixBa .cmc-popover__dropdown{width:200px;}/*!sc*/\ndata-styled.g169[id="gqd5b8-2"]{content:"fEixBa,"}/*!sc*/\n.ljymAU{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#FFFFFF;border-radius:5px;border:none;color:#222531;cursor:pointer;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;font-size:12px;font-weight:500;height:100%;line-height:12px;margin:0;padding:5px;vertical-align:baseline;white-space:nowrap;height:27px;width:22px;}/*!sc*/\n.ljymAU:focus,.ljymAU:hover{background-color:#EFF2F5;outline:0;}/*!sc*/\ndata-styled.g173[id="gqd5b8-6"]{content:"ljymAU,"}/*!sc*/\n.dOnegn{border-bottom:1px solid #EFF2F5;font-size:12px;font-weight:500;line-height:16px;padding-top:4px;padding-bottom:4px;position:relative;z-index:931;}/*!sc*/\n.dOnegn .container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;}/*!sc*/\n@media (max-width:1199.98px){.dOnegn{font-size:11px;}}/*!sc*/\ndata-styled.g174[id="sc-33i2yg-0"]{content:"dOnegn,"}/*!sc*/\n.dZMOCN{width:36px;height:36px;border-radius:18px;display:inline-block;line-height:40px;}/*!sc*/\n.dZMOCN:hover{background:#F0F6FF;}/*!sc*/\ndata-styled.g179[id="h9xs45-0"]{content:"dZMOCN,"}/*!sc*/\n.kJsxWS{width:40px;height:40px;position:absolute;top:-3px;right:-20px;}/*!sc*/\n.kJsxWS .spinner{width:6px;height:6px;position:absolute;top:16px;left:16px;background-color:#3861FB;border-radius:100%;}/*!sc*/\n.kJsxWS .spinner--animation{width:6px;height:6px;top:16px;left:16px;}/*!sc*/\n.kJsxWS .spinner-outer{width:14px;height:14px;position:absolute;top:12px;left:12px;background-color:#3861FB;border-radius:100%;-webkit-animation:diEKVC 1.6s infinite ease-in-out;animation:diEKVC 1.6s infinite ease-in-out;}/*!sc*/\ndata-styled.g182[id="sc-188mhkv-0"]{content:"kJsxWS,"}/*!sc*/\n.fMhTiy{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;padding-left:20px;}/*!sc*/\ndata-styled.g183[id="sc-26sca8-0"]{content:"fMhTiy,"}/*!sc*/\n.fQPFVV{background-color:#EFF2F5;color:#A6B0C3;border-radius:8px;padding:8px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;margin-left:8px;}/*!sc*/\ndata-styled.g184[id="q0coyt-0"]{content:"fQPFVV,"}/*!sc*/\n.fOZYHf{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:600;font-size:12px;margin-left:4px;width:100px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}/*!sc*/\ndata-styled.g185[id="q0coyt-1"]{content:"fOZYHf,"}/*!sc*/\n.kqdKYQ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:5px 15px;max-width:1400px;margin:0 auto;}/*!sc*/\n.kqdKYQ .cmc-logo{width:168px;height:28px;}/*!sc*/\n.kqdKYQ button{height:36px;white-space:nowrap;}/*!sc*/\n.kqdKYQ > a > button{margin:0 8px;}/*!sc*/\n.kqdKYQ li button{padding:20px 16px;height:auto;}/*!sc*/\ndata-styled.g212[id="sc-1q2q8hd-0"]{content:"kqdKYQ,"}/*!sc*/\n.jOGBiJ{padding-left:10px;}/*!sc*/\n.jOGBiJ li button{padding:12.5px 0px;}/*!sc*/\n.jOGBiJ li > div{left:calc(-200%) !important;}/*!sc*/\n.jOGBiJ li > div > div div:nth-child(1){left:185px !important;}/*!sc*/\ndata-styled.g213[id="sc-1q2q8hd-1"]{content:"jOGBiJ,"}/*!sc*/\n.kMOeoA{display:inline-block;position:relative;color:#000;}/*!sc*/\n.kMOeoA .red-dot{width:12px;height:12px;background:#ea3943;border-radius:10px;position:absolute;top:9px;border:3px solid #fff;right:3px;}/*!sc*/\ndata-styled.g214[id="sc-1q2q8hd-2"]{content:"kMOeoA,"}/*!sc*/\n@media (max-width:1199.98px){.iGclcX{display:none;}}/*!sc*/\ndata-styled.g215[id="xwtbyq-0"]{content:"iGclcX,"}/*!sc*/\n.eiYhYM{height:1px;background-color:#EFF2F5;}/*!sc*/\ndata-styled.g216[id="xwtbyq-1"]{content:"eiYhYM,"}/*!sc*/\n.ifvooB{background-color:#FFF;border-bottom:1px solid rgba(0,0,0,0.1);font-size:12px;font-weight:500;line-height:16px;position:relative;z-index:930;}/*!sc*/\n.ifvooB .container{padding-left:0;padding-right:0;position:relative;}/*!sc*/\n.ifvooB .cmc-global-stats__fade{background-image:linear-gradient(to right,rgba(255,255,255,0),rgba(255,255,255,1) 100%);height:100%;pointer-events:none;position:absolute;right:0;top:0;width:50px;z-index:1;}/*!sc*/\n.ifvooB .cmc-global-stats__content{padding-left:16px;padding-right:16px;padding-top:9px;padding-bottom:9px;position:relative;white-space:nowrap;overflow-x:auto;overflow-y:hidden;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;-ms-overflow-style:none;}/*!sc*/\n.ifvooB .cmc-global-stats__content::-webkit-scrollbar{display:none;}/*!sc*/\n@media screen and (min-device-width:1400px){.ifvooB .cmc-global-stats__content::-webkit-scrollbar{height:4px;background-color:transparent;}.ifvooB .cmc-global-stats__content::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.3);border-radius:2px;}}/*!sc*/\n.ifvooB .cmc-global-stats__inner-content:after{display:inline-block;content:\' \';width:30px;}/*!sc*/\ndata-styled.g217[id="sc-18ghxad-0"]{content:"ifvooB,"}/*!sc*/\n.iFlDJJ{cursor:pointer;height:24px;line-height:24px;margin-left:15px;}/*!sc*/\ndata-styled.g218[id="sc-10dhc7s-0"]{content:"iFlDJJ,"}/*!sc*/\n.dPLAIJ{background-color:#FFF;border-bottom:1px solid rgba(0,0,0,0.1);color:#000;font-size:14px;font-weight:500;}/*!sc*/\n.dPLAIJ .container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;padding:15px;}/*!sc*/\ndata-styled.g219[id="sc-10dhc7s-1"]{content:"dPLAIJ,"}/*!sc*/\n.hTZeZX{height:30px;margin-right:auto;}/*!sc*/\n.hTZeZX .cmc-logo{width:175px;height:30px;}/*!sc*/\ndata-styled.g220[id="sc-10dhc7s-2"]{content:"hTZeZX,"}/*!sc*/\n.iuLgSq{display:block;}/*!sc*/\ndata-styled.g221[id="swwyas-0"]{content:"iuLgSq,"}/*!sc*/\n.brNCtW{padding:0 8px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;height:48px;color:#3861FB;-webkit-transition:0.2s;transition:0.2s;border-bottom:1px solid #EFF2F5;}/*!sc*/\n.brNCtW p{color:#3861FB;-webkit-transition:0.2s;transition:0.2s;}/*!sc*/\n.brNCtW svg{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);-webkit-transition:0.36s;transition:0.36s;}/*!sc*/\n.brNCtW a{color:var(--text-color) !important;}/*!sc*/\ndata-styled.g222[id="swwyas-1"]{content:"brNCtW,"}/*!sc*/\n.dzLjvV{padding:0 8px;-webkit-transition:height 0.36s;transition:height 0.36s;overflow-y:hidden;}/*!sc*/\n.dzLjvV .swwyas-2:last-of-type{margin-top:20px;}/*!sc*/\ndata-styled.g224[id="swwyas-3"]{content:"dzLjvV,"}/*!sc*/\n.fiLTGu{padding:4px 0 10px 0;}/*!sc*/\ndata-styled.g225[id="swwyas-4"]{content:"fiLTGu,"}/*!sc*/\n.dvzNTs{padding:10px 0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\ndata-styled.g227[id="swwyas-6"]{content:"dvzNTs,"}/*!sc*/\n.nLWjZ{width:28px;height:28px;}/*!sc*/\n.nLWjZ img,.nLWjZ svg{width:100%;height:100%;}/*!sc*/\ndata-styled.g228[id="swwyas-7"]{content:"nLWjZ,"}/*!sc*/\n.lhmcUg{margin:8px 0;width:100%;height:1px;background-color:#EFF2F5;}/*!sc*/\ndata-styled.g229[id="swwyas-8"]{content:"lhmcUg,"}/*!sc*/\n.vEeCz{margin-left:4px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n.vEeCz svg{width:18px;}/*!sc*/\ndata-styled.g230[id="swwyas-9"]{content:"vEeCz,"}/*!sc*/\n.kgfbam{background-color:#EBEFF2;border:1px solid #EBEFF2;border-radius:5px;color:#000;font-size:12px;font-weight:500;line-height:12px;padding:10px;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:100%;}/*!sc*/\n.kgfbam:focus,.kgfbam:hover{background-color:#FFF;border-color:#4878FF;outline:0;}/*!sc*/\ndata-styled.g231[id="lbfhry-0"]{content:"kgfbam,"}/*!sc*/\n.eJUUCc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:30px -5px 24px;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}/*!sc*/\ndata-styled.g232[id="lbfhry-1"]{content:"eJUUCc,"}/*!sc*/\n.cqYXSa{-webkit-flex:1 0;-ms-flex:1 0;flex:1 0;margin:0 5px;}/*!sc*/\n.cqYXSa .cmc-popover__trigger{margin-right:6px;}/*!sc*/\n.cqYXSa .cmc-popover__dropdown{background-color:#FFF;border-radius:4px;border:1px solid #E4E7EB;box-shadow:0 2px 10px 0 rgba(0,0,0,0.1);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;padding:15px;width:291px;}/*!sc*/\n@media (max-width:767.98px){.cqYXSa .cmc-popover__dropdown{-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;width:100%;height:100%;-webkit-transform:none !important;-ms-transform:none !important;transform:none !important;z-index:100000;}.cqYXSa .cmc-popover__dropdown > form{box-shadow:0px 1px 2px rgba(128,138,157,0.12),0px 8px 32px rgba(128,138,157,0.24);margin-top:-15px;margin-left:-15px;margin-right:-15px;width:calc(100% + 30px);padding:22px;position:relative;background:var(--color-primary-white);z-index:1;}.cqYXSa .cmc-popover__dropdown > form::before{content:\'Select Language\';display:block;width:100%;font-family:Inter;font-size:16px;font-weight:600;text-align:center;margin-bottom:16px;}.cqYXSa .cmc-popover__dropdown > form::after{content:\'X\';display:block;font-family:sans-serif;color:var(--info-icon-color);position:absolute;right:22px;top:22px;font-size:1.2em;}.cqYXSa .cmc-popover__dropdown > div{height:100%;padding-top:120px;position:absolute;max-height:100%;padding-bottom:16px;}}/*!sc*/\ndata-styled.g233[id="lbfhry-2"]{content:"cqYXSa,"}/*!sc*/\n.ffesPn{-webkit-flex:1 0;-ms-flex:1 0;flex:1 0;margin:0 5px;}/*!sc*/\n.ffesPn .cmc-popover__trigger{margin-right:6px;}/*!sc*/\n.ffesPn .cmc-popover__dropdown{background-color:#FFF;border-radius:4px;border:1px solid #E4E7EB;box-shadow:0 2px 10px 0 rgba(0,0,0,0.1);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;padding:15px;width:291px;}/*!sc*/\n@media (max-width:767.98px){.ffesPn .cmc-popover__dropdown{-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;width:100%;height:100%;-webkit-transform:none !important;-ms-transform:none !important;transform:none !important;z-index:100000;}.ffesPn .cmc-popover__dropdown > form{box-shadow:0px 1px 2px rgba(128,138,157,0.12),0px 8px 32px rgba(128,138,157,0.24);margin-top:-15px;margin-left:-15px;margin-right:-15px;width:calc(100% + 30px);padding:22px;position:relative;background:var(--color-primary-white);z-index:1;}.ffesPn .cmc-popover__dropdown > form::before{content:\'Select Language\';display:block;width:100%;font-family:Inter;font-size:16px;font-weight:600;text-align:center;margin-bottom:16px;}.ffesPn .cmc-popover__dropdown > form::after{content:\'X\';display:block;font-family:sans-serif;color:var(--info-icon-color);position:absolute;right:22px;top:22px;font-size:1.2em;}.ffesPn .cmc-popover__dropdown > div{height:100%;padding-top:120px;position:absolute;max-height:100%;padding-bottom:16px;}}/*!sc*/\n@media (max-width:767.98px){.ffesPn .cmc-popover__dropdown > form::before{content:\'Select Currency\';}}/*!sc*/\ndata-styled.g234[id="lbfhry-3"]{content:"ffesPn,"}/*!sc*/\n.kFpHDG{-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;margin:0 5px;}/*!sc*/\ndata-styled.g238[id="lbfhry-7"]{content:"kFpHDG,"}/*!sc*/\n.gWEyHG{background-color:#EBEFF2;border:1px solid #EBEFF2;border-radius:5px;color:#000;font-size:12px;font-weight:500;line-height:12px;padding:10px;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;}/*!sc*/\n.gWEyHG:focus,.gWEyHG:hover{background-color:#FFF;border-color:#4878FF;outline:0;}/*!sc*/\ndata-styled.g239[id="lbfhry-8"]{content:"gWEyHG,"}/*!sc*/\n.leTUev{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;height:60px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 16px;background-color:#FFFFFF;position:relative;box-shadow:0px 8px 32px rgba(128,138,157,0.12),0px 1px 2px rgba(128,138,157,0.08);z-index:934;}/*!sc*/\ndata-styled.g240[id="sc-1srp8s9-0"]{content:"leTUev,"}/*!sc*/\n.OfwFQ{height:28px;}/*!sc*/\n.OfwFQ .cmc-logo{height:28px;width:168px;}/*!sc*/\ndata-styled.g241[id="sc-1srp8s9-1"]{content:"OfwFQ,"}/*!sc*/\n.iyGLzw{padding:8px 16px;height:calc(100% - 60px);overflow:auto;}/*!sc*/\ndata-styled.g242[id="of8kjr-0"]{content:"iyGLzw,"}/*!sc*/\n.fWFYct{font-size:16px;font-weight:600;line-height:16px;list-style-type:none;padding-left:0;}/*!sc*/\ndata-styled.g243[id="of8kjr-1"]{content:"fWFYct,"}/*!sc*/\n.cCfPRT{padding:0 8px;color:#222531;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;cursor:pointer;height:48px;border-bottom:1px solid #EFF2F5;}/*!sc*/\n.cCfPRT > a{color:#222531;height:auto;-webkit-text-decoration:none;text-decoration:none;width:100%;}/*!sc*/\n.cCfPRT > a:hover{color:#222531;}/*!sc*/\n.cCfPRT .uikit-icon-adjust{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n.cCfPRT .red-dot{margin-left:8px;display:inline-block;width:8px;height:8px;border-radius:8px;background:#ea3943;}/*!sc*/\ndata-styled.g244[id="of8kjr-2"]{content:"cCfPRT,"}/*!sc*/\n.gZSKzh{text-align:center;line-height:2em;}/*!sc*/\n.gZSKzh hr{border-color:#EBEFF2;margin:15px 0 20px;}/*!sc*/\ndata-styled.g245[id="of8kjr-3"]{content:"gZSKzh,"}/*!sc*/\n.fmHBpc{font-size:12px;font-weight:600;line-height:12px;}/*!sc*/\n.fmHBpc::after{content:\'\xe2\x80\xa2\';margin:0 8px;}/*!sc*/\n.fmHBpc:last-of-type::after{content:\'\';margin:0;}/*!sc*/\ndata-styled.g246[id="of8kjr-4"]{content:"fmHBpc,"}/*!sc*/\n.dqwTJv{color:#58667E;}/*!sc*/\n.dqwTJv:hover{color:#4878FF;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\ndata-styled.g247[id="of8kjr-5"]{content:"dqwTJv,"}/*!sc*/\n.cKzWZG{display:inline-block;height:18px;width:18px;margin-right:20px;}/*!sc*/\ndata-styled.g248[id="of8kjr-6"]{content:"cKzWZG,"}/*!sc*/\n.lbjAWJ{color:#58667E;font-size:25px;line-height:25px;}/*!sc*/\n.lbjAWJ:hover{color:#4878FF;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.lbjAWJ:last-of-type{margin-right:0;}/*!sc*/\ndata-styled.g249[id="of8kjr-7"]{content:"lbjAWJ,"}/*!sc*/\n.biWqMi{height:100%;background-color:#FFFFFF;}/*!sc*/\n.biWqMi .mainmenu-enter-active{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);}/*!sc*/\n.biWqMi .mainmenu-enter-done{-webkit-transform:translateX(-100px);-ms-transform:translateX(-100px);transform:translateX(-100px);-webkit-transition:-webkit-transform 0.2s ease;-webkit-transition:transform 0.2s ease;transition:transform 0.2s ease;}/*!sc*/\n.biWqMi .mainmenu-exit-active{-webkit-transform:translateX(-100px);-ms-transform:translateX(-100px);transform:translateX(-100px);}/*!sc*/\n.biWqMi .mainmenu-exit-done{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);-webkit-transition:-webkit-transform 0.2s ease;-webkit-transition:transform 0.2s ease;transition:transform 0.2s ease;}/*!sc*/\ndata-styled.g250[id="of8kjr-8"]{content:"biWqMi,"}/*!sc*/\n.cOzvm{position:fixed;height:100%;width:100%;top:0;z-index:932;color:#222531;right:100%;-webkit-transition:right 0.2s ease;transition:right 0.2s ease;}/*!sc*/\ndata-styled.g260[id="jz3180-1"]{content:"cOzvm,"}/*!sc*/\n@media (min-width:1200px){.gjGEuR:not(.cmc-header-mobile-only){display:none;}}/*!sc*/\ndata-styled.g261[id="sc-1l9306o-0"]{content:"gjGEuR,"}/*!sc*/\n.fLfsZi{position:relative;}/*!sc*/\ndata-styled.g270[id="sc-1ojz83d-0"]{content:"fLfsZi,"}/*!sc*/\n@media (min-width:1376px){.cyTcBl .grid{max-width:1402px;}}/*!sc*/\n.cyTcBl .cmc-body-wrapper{background:linear-gradient( 180deg,#F8FAFD 0%,rgba(248,250,253,0) 413px );}/*!sc*/\n.cyTcBl .full-width-layout{padding:0;max-width:100%;}/*!sc*/\ndata-styled.g271[id="sc-1ojz83d-1"]{content:"cyTcBl,"}/*!sc*/\n.hOKkUo{position:fixed;bottom:0;right:0;visibility:hidden;width:100%;z-index:930;}/*!sc*/\ndata-styled.g272[id="sc-1ojz83d-2"]{content:"hOKkUo,"}/*!sc*/\n.dZrwAR{margin-left:3px;vertical-align:middle;line-height:0;}/*!sc*/\n.dZrwAR span[class^=\'icon\']:before{vertical-align:middle;margin-bottom:4px;}/*!sc*/\n@media (max-width:991px){.dZrwAR{display:none;}}/*!sc*/\ndata-styled.g276[id="rqf1px-2"]{content:"dZrwAR,"}/*!sc*/\n.gClTFY span[class^=\'icon\']{margin-right:4px;}/*!sc*/\ndata-styled.g280[id="sc-1v2ivon-0"]{content:"gClTFY,"}/*!sc*/\n@font-face{font-family:\'Inter\';font-style:normal;font-weight:400;src:url(\'https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Regular-new.woff2\') format(\'woff2\'),url(\'https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Regular-new.woff\') format(\'woff\');font-display:swap;}/*!sc*/\n@font-face{font-family:\'Inter\';font-style:normal;font-weight:500;src:url(\'https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Medium-new.woff2\') format(\'woff2\'),url(\'https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Medium-new.woff\') format(\'woff\');font-display:swap;}/*!sc*/\n@font-face{font-family:\'Inter\';font-style:normal;font-weight:600;src:url(\'https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-SemiBold-new.woff2\') format(\'woff2\'),url(\'https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-SemiBold-new.woff\') format(\'woff\');font-display:swap;}/*!sc*/\n@font-face{font-family:\'Inter\';font-style:normal;font-weight:700;src:url(\'https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Bold-new.woff2\') format(\'woff2\'),url(\'https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Bold-new.woff\') format(\'woff\');font-display:swap;}/*!sc*/\n@font-face{font-family:\'Inter\';font-style:normal;font-weight:900;src:url(\'https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Black-new.woff2\') format(\'woff2\'),url(\'https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Black-new.woff\') format(\'woff\');font-display:swap;}/*!sc*/\n*,*:before,*:after{box-sizing:border-box;border-spacing:0px;}/*!sc*/\nhtml,body,#__next{padding:0;margin:0;}/*!sc*/\nbody{background:#fff;color:#000;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-family:Inter,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Helvetica,Arial,sans-serif;font-size:15px;line-height:1.5em;vertical-align:baseline;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-height:100vh;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;font-smoothing:antialiased;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}/*!sc*/\np{font-size:15px;line-height:24px;margin-bottom:12px;}/*!sc*/\n.cmc--change-positive{color:#009e73;}/*!sc*/\n.cmc--change-negative{color:#d94040;}/*!sc*/\n.container{width:100%;max-width:1400px;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto;}/*!sc*/\n@media (min-width:768px){.container{width:95%;}}/*!sc*/\n.dropdown-toggle::after{margin-left:0.355em;vertical-align:0.155em;}/*!sc*/\n[pointer-events=\'none\']{pointer-events:none;}/*!sc*/\nul,ol{list-style-type:none;margin:0;padding:0;}/*!sc*/\n#nprogress .bar{background:#4878ff;height:5px;}/*!sc*/\n.bp3-overlay-open .bp3-transition-container{z-index:920;}/*!sc*/\na,a:not([href]):not([tabindex]){color:#3861FB;-webkit-text-decoration:none;text-decoration:none;cursor:pointer;}/*!sc*/\na:hover,a:not([href]):not([tabindex]):hover,a:focus,a:not([href]):not([tabindex]):focus{color:rgba(16,112,224,0.85);-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/\na:active,a:not([href]):not([tabindex]):active,a:hover,a:not([href]):not([tabindex]):hover{outline:0;}/*!sc*/\nhr{border:0 none;height:1px;background-color:#f5f7f8;margin:0 0 24px;}/*!sc*/\n.cmc-bottom-margin-1x{margin-bottom:24px;}/*!sc*/\n.cmc-bottom-margin-2x{margin-bottom:48px;}/*!sc*/\n.cmc-bottom-margin-3x{margin-bottom:72px;}/*!sc*/\n.cmc-clear:before,.cmc-clear:after{content:\' \';display:table;}/*!sc*/\n.cmc-clear:after{clear:both;}/*!sc*/\n@media (max-width:767.98px){.cmc-input,.cmc-select__input input{font-size:16px !important;}}/*!sc*/\n.cmc-table-row:hover td{background-color:#F8FAFD !important;}/*!sc*/\na:hover,a:not([href]):not([tabindex]):hover,a:focus,a:not([href]):not([tabindex]):focus{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.search-popover .tippy-content{padding:0 !important;}/*!sc*/\n.search-popover{background-color:transparent !important;}/*!sc*/\n.fiat-supported-popover{background-color:var(--dark-bg) !important;border-radius:8px;}/*!sc*/\n.fiat-supported-popover .tippy-arrow{color:var(--dark-bg);}/*!sc*/\n.highcharts-root text{font-size:12px;}/*!sc*/\ndata-styled.g342[id="sc-global-bYnpdr1"]{content:"sc-global-bYnpdr1,"}/*!sc*/\n.gwBIGi{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;}/*!sc*/\n.inEvJB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}/*!sc*/\ndata-styled.g343[id="sc-9dqrx-0"]{content:"gwBIGi,inEvJB,"}/*!sc*/\n.gYhBqs{cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n.gYhBqs span[class^=\'icon\']{margin-left:1px;}/*!sc*/\ndata-styled.g344[id="sc-9dqrx-1"]{content:"gYhBqs,"}/*!sc*/\n.gxonsA{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}/*!sc*/\n.gxonsA a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\ndata-styled.g346[id="sc-1anvaoh-0"]{content:"gxonsA,"}/*!sc*/\n.gMPRcy .cmc-link{text-align:left;}/*!sc*/\n.gMPRcy .cmc-link > button{text-align:left;}/*!sc*/\ndata-styled.g347[id="sc-1bjn64-0"]{content:"gMPRcy,"}/*!sc*/\n.lfTRgy{box-sizing:border-box;margin:0;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow:visible;height:64px;position:relative;}/*!sc*/\n.lfTRgy a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.lfTRgy > div.leftArrow,.lfTRgy > div.rightArrow{display:none;}/*!sc*/\n.lfTRgy.hideArrow > div.leftArrow,.lfTRgy.hideArrow > div.rightArrow{display:none;}/*!sc*/\n.lfTRgy.hideArrow > *:nth-child(2){margin-left:0;}/*!sc*/\n.lfTRgy.hideArrow > *:nth-last-child(2){margin-right:0;}/*!sc*/\n@media (max-width:768px){.lfTRgy > div.leftArrow,.lfTRgy > div.rightArrow{top:0%;width:40px;position:absolute;height:50%;text-align:center;color:#58667e;font-weight:500;line-height:38px;position:-webkit-sticky;position:sticky;display:inline-table;-webkit-transition:all 0.3s ease;transition:all 0.3s ease;visibility:visible;border-radius:8px;}.lfTRgy > div.leftArrow svg,.lfTRgy > div.rightArrow svg{vertical-align:sub;width:16px;height:16px;vertical-align:middle;}.lfTRgy > div.leftArrow{content:\'<\';background-image:linear-gradient( to right,var(--control-background-color) 0%,rgba(255,255,255,0) 100% );left:0;-webkit-transform-origin:left;-ms-transform-origin:left;transform-origin:left;text-align:left;}.lfTRgy > div.rightArrow{right:0;content:\'>\';background-image:linear-gradient( to left,var(--control-background-color) 0%,rgba(255,255,255,0) 100% );-webkit-transform-origin:right;-ms-transform-origin:right;transform-origin:right;text-align:right;}.lfTRgy > *:nth-child(2){margin-left:-40px;}.lfTRgy > *:nth-last-child(2){margin-right:-40px;}.lfTRgy.scroll-initial > div.leftArrow{opacity:0;visibility:hidden;}.lfTRgy.scroll-bottom > div.rightArrow{opacity:0;visibility:hidden;}}/*!sc*/\n.lfTRgy > div{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n@media (max-width:768px){.lfTRgy{height:48px;overflow-x:scroll;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;-ms-overflow-style:none;}.lfTRgy .table-control-page-sizer{display:none;}.lfTRgy .table-link-area{-webkit-flex:1;-ms-flex:1;flex:1;}.lfTRgy::-webkit-scrollbar{display:none;}}/*!sc*/\ndata-styled.g367[id="quq9zv-1"]{content:"lfTRgy,"}/*!sc*/\n.hMHGsN{white-space:nowrap !important;color:#58667E !important;margin-right:4px !important;background-color:#F0F6FF !important;color:#3861FB !important;}/*!sc*/\n.hMHGsN a{color:#3861FB !important;}/*!sc*/\n.hMHGsN:hover{background-color:#F0F6FF !important;color:#3861FB !important;}/*!sc*/\n.dTfXAS{white-space:nowrap !important;color:#58667E !important;margin-right:4px !important;}/*!sc*/\ndata-styled.g368[id="quq9zv-2"]{content:"hMHGsN,dTfXAS,"}/*!sc*/\n.dSenMZ{padding:0 8px;margin-left:8px;}/*!sc*/\ndata-styled.g369[id="quq9zv-3"]{content:"dSenMZ,"}/*!sc*/\n.hFppC{white-space:nowrap !important;color:#58667E !important;margin-right:4px !important;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--text-color) !important;padding:5px 8px;}/*!sc*/\n.hFppC span.icon-Star{font-size:1.3em;}/*!sc*/\n.hFppC svg{width:1.3em;}/*!sc*/\n.hFppC span.icon-Star::before{color:!important;}/*!sc*/\n.hFppC:hover span.icon-Star::before,.hFppC:hover svg > path{color:var(--text-color);fill:var(--text-color);}/*!sc*/\n.hFppC .watchlist-star-text{color:unset;}/*!sc*/\ndata-styled.g371[id="quq9zv-5"]{content:"hFppC,"}/*!sc*/\n.hTjWKA{height:16px;width:1px;margin:0 16px;background:#CFD6E4;}/*!sc*/\ndata-styled.g372[id="quq9zv-6"]{content:"hTjWKA,"}/*!sc*/\n.leKgbR{display:inline-block;position:relative;width:8px;height:100%;min-height:32px;}/*!sc*/\ndata-styled.g373[id="quq9zv-7"]{content:"leKgbR,"}/*!sc*/\n.ehWQdu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n@media (max-width:992px){.ehWQdu{display:none;}}/*!sc*/\ndata-styled.g374[id="quq9zv-8"]{content:"ehWQdu,"}/*!sc*/\n.bFptSr{display:none;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}/*!sc*/\n@media (max-width:992px){.bFptSr{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/\n.bFptSr > span{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/\n.bFptSr > span:last-child{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}/*!sc*/\ndata-styled.g375[id="quq9zv-9"]{content:"bFptSr,"}/*!sc*/\n.snkfi{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}/*!sc*/\ndata-styled.g376[id="quq9zv-10"]{content:"snkfi,"}/*!sc*/\n.mvtIA .previous,.mvtIA .next,.mvtIA .break{display:inline-block;min-width:28px;height:28px;color:#222531;line-height:28px;text-align:center;vertical-align:middle;list-style:none;border-radius:2px;cursor:pointer;-webkit-transition:all 0.3s;transition:all 0.3s;}/*!sc*/\n.mvtIA .break{outline:0;margin-right:8px;}/*!sc*/\n.mvtIA .break a{background:transparent;border:none;cursor:pointer;color:#666;display:none;}/*!sc*/\n.mvtIA .break:after{display:block;content:\'\xe2\x80\xa2\xe2\x80\xa2\xe2\x80\xa2\';color:#666;font-size:10px;margin:0 auto;}/*!sc*/\n.mvtIA .page{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;min-width:32px;height:32px;margin-right:4px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:8px;outline:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:600;color:#222531;}/*!sc*/\n.mvtIA .page:hover{background:#EFF2F5;}/*!sc*/\n.mvtIA .page a{height:100%;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:0 6px;-webkit-transition:none;transition:none;color:#222531 !important;}/*!sc*/\n.mvtIA .page a:hover{-webkit-text-decoration:none;text-decoration:none;color:#222531 !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/\n.mvtIA .chevron{color:inherit;}/*!sc*/\n.mvtIA .previous{margin-right:8px;}/*!sc*/\n.mvtIA .active{background:#3861FB;}/*!sc*/\n.mvtIA .active:focus,.mvtIA .active:hover{color:#FFFFFF;background:#3861FB;}/*!sc*/\n.mvtIA .active:focus a,.mvtIA .active:hover a{color:#FFFFFF !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/\n.mvtIA .active a{color:#FFFFFF !important;}/*!sc*/\ndata-styled.g377[id="sc-1pue38x-0"]{content:"mvtIA,"}/*!sc*/\n.kqmqqA{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin:16px 0 40px 0;}/*!sc*/\n.kqmqqA a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\n.kqmqqA .rc-pagination-item a{color:#222531 !important;}/*!sc*/\n.kqmqqA .rc-pagination-item a:hover{color:#222531 !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/\n.kqmqqA .rc-pagination-item-active a{color:#FFFFFF !important;}/*!sc*/\n.kqmqqA .rc-pagination-item-active a:hover{color:#FFFFFF !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/\ndata-styled.g378[id="sc-8ccaqg-0"]{content:"kqmqqA,"}/*!sc*/\n.kCmxUQ{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/\n.kCmxUQ a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\ndata-styled.g379[id="sc-8ccaqg-1"]{content:"kCmxUQ,"}/*!sc*/\n.jbqscO{display:none;}/*!sc*/\n.jbqscO .rc-pagination-item a{color:#222531 !important;}/*!sc*/\n.jbqscO .rc-pagination-item a:hover{color:#222531 !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/\n.jbqscO .rc-pagination-item-active a{color:#FFFFFF !important;}/*!sc*/\n.jbqscO .rc-pagination-item-active a:hover{color:#FFFFFF !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/\n@media (max-width:768px){.jbqscO{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:20px 0;background-color:#F8FAFD;width:100vw;left:-16px;position:relative;}}/*!sc*/\ndata-styled.g380[id="sc-8ccaqg-2"]{content:"jbqscO,"}/*!sc*/\n.locCiP{display:block;}/*!sc*/\n@media (max-width:768px){.locCiP{display:none;}}/*!sc*/\ndata-styled.g381[id="sc-8ccaqg-3"]{content:"locCiP,"}/*!sc*/\n.xQvNt{width:100%;max-width:100%;-webkit-filter:drop-shadow(0px 4px 24px rgba(88,102,126,0.08));filter:drop-shadow(0px 4px 24px rgba(88,102,126,0.08));}/*!sc*/\n.xQvNt .scroll-menu-arrow{z-index:1;-webkit-transition:0.3s ease;transition:0.3s ease;}/*!sc*/\n.xQvNt .scroll-menu-arrow--disabled{opacity:0;}/*!sc*/\n.xQvNt .menu-item-wrapper:focus{outline:none;!important;}/*!sc*/\ndata-styled.g382[id="sc-1lqrwy2-0"]{content:"xQvNt,"}/*!sc*/\n.iFclex{width:24px;height:24px;border-radius:12px;background-color:#A6B0C3;color:#FFF;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;cursor:pointer;}/*!sc*/\ndata-styled.g383[id="sc-1lqrwy2-1"]{content:"iFclex,"}/*!sc*/\n.kASdkM{height:100%;width:0;overflow:visible;-webkit-transform:none;-ms-transform:none;transform:none;}/*!sc*/\n.bdcCDi{height:100%;width:0;overflow:visible;-webkit-transform:translate(-24px,0);-ms-transform:translate(-24px,0);transform:translate(-24px,0);}/*!sc*/\ndata-styled.g384[id="sc-1lqrwy2-2"]{content:"kASdkM,bdcCDi,"}/*!sc*/\n.dnuGLb{width:24px;height:90px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-image:linear-gradient(to right,#FFF,rgba(255,255,255,0));}/*!sc*/\n.mhtTk{width:24px;height:90px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-image:linear-gradient(to left,#FFF,rgba(255,255,255,0));}/*!sc*/\ndata-styled.g385[id="sc-1lqrwy2-3"]{content:"dnuGLb,mhtTk,"}/*!sc*/\n.eAFxmG{box-sizing:border-box;margin:0;color:#808A9D;-webkit-text-decoration:underline;text-decoration:underline;cursor:pointer;display:inline-block;}/*!sc*/\n.eAFxmG a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/\ndata-styled.g386[id="sc-835z3x-0"]{content:"eAFxmG,"}/*!sc*/\n.hFlcKs span[class^=\'icon\']{margin-right:4px;}/*!sc*/\ndata-styled.g395[id="sc-1puytyg-0"]{content:"hFlcKs,"}/*!sc*/\n@-webkit-keyframes diEKVC{0%,100%{-webkit-transform:scale(0.8);-ms-transform:scale(0.8);transform:scale(0.8);opacity:0.2;}50%{-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9);opacity:0.3;}}/*!sc*/\n@keyframes diEKVC{0%,100%{-webkit-transform:scale(0.8);-ms-transform:scale(0.8);transform:scale(0.8);opacity:0.2;}50%{-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9);opacity:0.3;}}/*!sc*/\ndata-styled.g397[id="sc-keyframes-diEKVC"]{content:"diEKVC,"}/*!sc*/\n.fletOv{height:80px;}/*!sc*/\n@media (max-width:576px){.fletOv{height:61px;}}/*!sc*/\n.fletOv span{display:inline-block;}/*!sc*/\n.fletOv td:nth-child(1) span{width:16px;height:16px;border-radius:8px;background:#EFF2F5;left:4px;top:5px;position:relative;}/*!sc*/\n.fletOv td:nth-child(2) span:nth-child(2){width:68px;}/*!sc*/\n.fletOv td:nth-child(2) span{width:12px;height:14px;border-radius:4px;background:#EFF2F5;left:4px;top:5px;position:relative;}/*!sc*/\n.fletOv td:nth-child(3) span:nth-child(2){margin-left:5px;width:68px;}/*!sc*/\n.fletOv td:nth-child(3) span:nth-child(3){margin-left:5px;width:24px;}/*!sc*/\n@media (max-width:768px){.fletOv td:nth-child(3) span:nth-child(3){display:none;}}/*!sc*/\n.fletOv td:nth-child(4) .row-holder,.fletOv td:nth-child(5) .row-holder,.fletOv td:nth-child(6) .row-holder,.fletOv td:nth-child(7) .row-holder{width:100%;}/*!sc*/\n.fletOv td:nth-child(8) .row-holder,.fletOv td:nth-child(9) .row-holder{display:block;width:100%;}/*!sc*/\n.fletOv td:nth-child(8) span:nth-child(2),.fletOv td:nth-child(9) span:nth-child(2){width:calc(100% * 0.6);margin-top:5px;float:right;}/*!sc*/\n.fletOv td:nth-child(10) span{width:100%;height:22px;background:#EFF2F5;border-radius:4px;background:linear-gradient( 180deg,rgba(207,214,228,0.3) 0%,rgba(207,214,228,0) 97.7% );position:relative;top:10px;}/*!sc*/\n.fletOv td:nth-child(11) span{float:left;width:16px;height:16px;border-radius:4px;background:#EFF2F5;left:4px;top:5px;position:relative;}/*!sc*/\n.fletOv .circle{width:24px;height:24px;background:#EFF2F5;border-radius:12px;position:relative;top:5px;}/*!sc*/\n.fletOv .row-holder{height:14px;background:#EFF2F5;border-radius:4px;}/*!sc*/\n.fletOv .crypto-symbol{color:#808a9d;}/*!sc*/\ndata-styled.g421[id="sc-14kwl6f-0"]{content:"fletOv,"}/*!sc*/\n.bNiDlV .seo-text__title{padding:16px 0px;color:#58667E;font-size:12px;line-height:18px;border-bottom:1px solid #EFF2F5;margin-bottom:40px;}/*!sc*/\n.bNiDlV .seo-text__title > div{display:inline-block;}/*!sc*/\n.bNiDlV .seo-text__title span{padding-left:5px;font-weight:500;color:#58667E;-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/\n.bNiDlV .seo-text__title span:hover{cursor:pointer;}/*!sc*/\n.bNiDlV .seo-text__content{padding:28px 0px;}/*!sc*/\n.bNiDlV .seo-text__content > div{padding-bottom:24px;}/*!sc*/\n.bNiDlV .seo-text__content span{font-weight:600;font-size:16px;color:#3861FB;-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/\n.bNiDlV .seo-text__content span:hover{cursor:pointer;}/*!sc*/\n.bNiDlV .seo-text-translations h1,.bNiDlV .seo-text-translations h2,.bNiDlV .seo-text-translations h3{font-weight:600;font-size:14px;line-height:21px;margin-bottom:10px;}/*!sc*/\n.bNiDlV .seo-text-translations p{font-size:12px;line-height:18px;color:#58667E;padding-bottom:15px;}/*!sc*/\ndata-styled.g423[id="sc-1u9taii-0"]{content:"bNiDlV,"}/*!sc*/\n.fpuWWI .cmc-native-ad-row{text-align:left !important;}/*!sc*/\ndata-styled.g424[id="sc-15ks4ej-0"]{content:"fpuWWI,"}/*!sc*/\n@media (max-width:991px){.fENxkl{display:none;}}/*!sc*/\ndata-styled.g425[id="sc-15ks4ej-1"]{content:"fENxkl,"}/*!sc*/\n</style></head><body data-commit="29bbdee3" class="DAY"><div id="__next"><div class="sc-1ojz83d-1 cyTcBl"><div class="sc-1ojz83d-0 fLfsZi"><div class="xwtbyq-0 iGclcX cmc-header-desktop"><div class="sc-33i2yg-0 dOnegn"><div class="container"><div><span class="sc-12ja2s9-0 eALoKW">Cryptocurrencies<!-- -->: \xc2\xa0<a href="/all/views/all/" class="cmc-link">8,697</a></span><span class="sc-12ja2s9-0 eALoKW">Markets<!-- -->: \xc2\xa0<a href="/currencies/volume/24-hour/" class="cmc-link">35,174</a></span><span class="sc-12ja2s9-0 eALoKW">Market Cap<!-- -->: \xc2\xa0<a href="/charts/" class="cmc-link">$1,475,809,405,042</a></span><span class="sc-12ja2s9-0 eALoKW">24h Vol<!-- -->: \xc2\xa0<a href="/charts/" class="cmc-link">$135,046,987,299</a></span><span class="sc-12ja2s9-0 eALoKW">Dominance<!-- -->: \xc2\xa0<a href="/charts/#dominance-percentage" class="cmc-link">BTC<!-- -->: <!-- -->60.6%<!-- -->\xc2\xa0<!-- -->ETH<!-- -->: <!-- -->11.9%</a></span><span class="sc-12ja2s9-0 eALoKW"><span class="icon-Gas-Filled" style="margin-right:4px;vertical-align:middle"></span>ETH Gas<!-- -->: \xc2\xa0<a>90<!-- --> <!-- -->Gwei<span class="icon-Chevron-down gasDownIcon___T2cjc"></span></a></span></div><div class="gqd5b8-0 nItQG"><div class="sc-AxhCb gAIOEV nav-item"></div><div class="gqd5b8-1 gqd5b8-2 fEixBa"><div class="cmc-popover"><div class="cmc-popover__trigger"><button title="Change your language" class="sc-10o4ja6-0 iwazsF"><span class="sc-1l1794m-1 jVkEMh">English</span><span class="sc-1l1794m-0 ejAOOE"><span class="icon-Caret-down"></span></span></button></div></div></div><div class="gqd5b8-1 kznmCF"><div class="cmc-popover"><div class="cmc-popover__trigger"><button data-qa-id="button-global-currency-picker" class="sc-10o4ja6-0 iwazsF"><span class="sc-1ta5cl2-0 ihKvrC"></span><span class="sc-1wnc593-1 bBcNle">USD</span><span class="sc-1wnc593-0 bMHyH"><span class="icon-Caret-down"></span></span></button></div></div></div><button type="button" class="sc-10o4ja6-0 gqd5b8-6 ljymAU cmc-theme-picker cmc-theme-picker--day"><span class="icon-Moon"></span></button></div></div></div><div class="sc-1q2q8hd-0 kqdKYQ"><a href="/" title="Go to homepage" class="cmc-logo-link cmc-link"><div class="sc-7i7lua-0 lohPt cmc-logo cmc-logo--size-large"></div></a><div class="sc-26sca8-0 fMhTiy"><nav class="sc-pZaHX hCKhjF"><ul class="sc-oTBUA hXGkGv"><li class="sc-pjstK dmrpMS"><a target="_self" href="/" class="cmc-link"><div class="sc-prorn fpBoEr"><span font-weight="600" font-size="14px" color="text" class="sc-AxhUy fqrLrs">Cryptocurrencies</span></div></a></li><li class="sc-pjstK dmrpMS"><a target="_self" href="/rankings/exchanges/" class="cmc-link"><div class="sc-prorn fpBoEr"><span font-weight="600" font-size="14px" color="text" class="sc-AxhUy fqrLrs">Exchanges</span></div></a></li><li class="sc-pjstK dmrpMS"><a target="_self" href="/portfolio-tracker" class="cmc-link"><div class="sc-prorn fpBoEr"><span font-weight="600" font-size="14px" color="text" class="sc-AxhUy fqrLrs">Portfolio</span></div></a></li><li class="sc-pjstK dmrpMS"><a target="_self" href="/watchlist/" class="cmc-link"><div class="sc-prorn fpBoEr"><span font-weight="600" font-size="14px" color="text" class="sc-AxhUy fqrLrs">Watchlist</span></div></a></li><li class="sc-pjstK dmrpMS"><div class="sc-pbxSd bSZjap"><div class="sc-prorn fpBoEr"><span font-weight="600" font-size="14px" color="text" class="sc-AxhUy fqrLrs">Products</span></div></div></li><li class="sc-pjstK dmrpMS"><a target="_blank" href="https://coinmarketcap.com/alexandria/" class="cmc-link"><div class="sc-prorn fpBoEr"><span font-weight="600" font-size="14px" color="text" class="sc-AxhUy fqrLrs"><div style="position:relative">Learn</div></span></div></a></li><li class="sc-pjstK dmrpMS"><a target="_self" href="/bitcoin-analytics" class="cmc-link"><div class="sc-prorn fpBoEr"><span font-weight="600" font-size="14px" color="text" class="sc-AxhUy fqrLrs">Buy Bitcoin</span></div></a></li></ul></nav></div><div class="sc-1q2q8hd-1 jOGBiJ"><nav class="sc-fzolEj jJAzoG"><ul class="sc-fzqBkg fCkJVF"><li class="sc-fzoKki kNKLJw"><button class="sc-fzoxKX gQAZOF"><div class="sc-1q2q8hd-2 kMOeoA"><div class="h9xs45-0 dZMOCN"><span class="icon-Bell"></span></div></div></button><div class="sc-fzoYkl hfPoTr"></div></li></ul></nav></div><div><div class="q0coyt-0 fQPFVV"><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="16px" width="16px" viewBox="0 0 24 24" class="sc-AxhCb CnJdC"><path d="M16.4153 16.4153L20 20M18.5455 11.2727C18.5455 15.2893 15.2894 18.5454 11.2728 18.5454C7.25612 18.5454 4 15.2893 4 11.2727C4 7.2561 7.25612 4 11.2728 4C15.2894 4 18.5455 7.2561 18.5455 11.2727Z" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg><div class="q0coyt-1 fOZYHf">Search</div><span></span></div></div></div><div class="xwtbyq-1 eiYhYM"></div></div><div class="sc-1l9306o-0 gjGEuR cmc-header-mobile"><nav class="sc-10dhc7s-1 dPLAIJ"><div class="container"><div class="sc-10dhc7s-2 hTZeZX"><a href="/" title="Go to homepage" class="cmc-link"><div class="sc-7i7lua-0 lohPt cmc-logo"></div></a></div><div class="sc-10dhc7s-0 iFlDJJ"><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M16.4153 16.4153L20 20M18.5455 11.2727C18.5455 15.2893 15.2894 18.5454 11.2728 18.5454C7.25612 18.5454 4 15.2893 4 11.2727C4 7.2561 7.25612 4 11.2728 4C15.2894 4 18.5455 7.2561 18.5455 11.2727Z" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div><div class="sc-10dhc7s-0 iFlDJJ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.99805 6.00342C1.99805 5.45113 2.44576 5.00342 2.99805 5.00342H21.0013C21.5536 5.00342 22.0013 5.45113 22.0013 6.00342C22.0013 6.5557 21.5536 7.00342 21.0013 7.00342H2.99805C2.44576 7.00342 1.99805 6.5557 1.99805 6.00342ZM1.99805 11.9999C1.99805 11.4476 2.44576 10.9999 2.99805 10.9999H21.0013C21.5536 10.9999 22.0013 11.4476 22.0013 11.9999C22.0013 12.5522 21.5536 12.9999 21.0013 12.9999H2.99805C2.44576 12.9999 1.99805 12.5522 1.99805 11.9999ZM2.99805 16.9964C2.44576 16.9964 1.99805 17.4441 1.99805 17.9964C1.99805 18.5487 2.44576 18.9964 2.99805 18.9964H21.0013C21.5536 18.9964 22.0013 18.5487 22.0013 17.9964C22.0013 17.4441 21.5536 16.9964 21.0013 16.9964H2.99805Z"></path></svg></div></div></nav><div class="jz3180-1 cOzvm"><div class="of8kjr-8 biWqMi"><div class="sc-1srp8s9-0 leTUev"><div class="sc-1srp8s9-1 OfwFQ"><a href="/" title="Go to homepage" class="cmc-link"><div class="sc-7i7lua-0 lohPt cmc-logo"></div></a></div><button style="margin-right:-5px" class="sc-Axmtr ivcmHV sc-fzqNJr edTNjJ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M18 6L6 18M18 18L6 6" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></button></div><div class="of8kjr-0 iyGLzw"><ul role="menu" class="of8kjr-1 fWFYct"><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><p font-size="16" font-weight="600" color="text" class="sc-AxhUy fEdfVy">Cryptocurrencies</p><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="22" width="22" viewBox="0 0 24 24" class="sc-AxhCb jDlxxm"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div><div style="height:0px" class="swwyas-3 dzLjvV"><div class="swwyas-4 fiLTGu"><div class="swwyas-5 caYbXb"><a target="_self" href="/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><circle cx="20" cy="20" r="20" fill="#3861FB"></circle><path d="M27.3907 21.9512C27.0367 22.1717 26.6198 22.199 26.3029 22.0229C25.9004 21.799 25.6791 21.2746 25.6791 20.5454V18.3634C25.6791 17.3098 25.2562 16.56 24.5492 16.3576C23.351 16.0137 22.4499 17.458 22.1112 18.0005L19.998 21.3761V17.2502C19.9743 16.301 19.6613 15.7332 19.0672 15.562C18.6741 15.4488 18.0859 15.4941 17.5145 16.3556L12.7801 23.8454C12.1463 22.6599 11.8159 21.3399 11.8176 20C11.8176 15.4883 15.4875 11.818 19.998 11.818C24.5086 11.818 28.178 15.4883 28.178 20C28.178 20.0078 28.1799 20.0146 28.1804 20.022C28.1804 20.0298 28.179 20.0366 28.1794 20.0444C28.222 20.918 27.9349 21.6132 27.3907 21.9517V21.9512ZM29.9956 20.0005V20V19.9776L29.9951 19.9551C29.9698 14.4605 25.4954 10 19.9975 10C14.4853 10 10 14.4859 10 20C10 25.5137 14.4853 30 19.998 30C22.5276 30 24.9418 29.0527 26.7951 27.3332C27.1635 26.9917 27.1852 26.4166 26.8436 26.0488C26.6812 25.8723 26.4535 25.7677 26.2118 25.7585C25.9702 25.7493 25.735 25.8364 25.5593 26C24.0571 27.4015 22.0668 28.1823 19.998 28.182C17.5828 28.182 15.4097 27.1288 13.911 25.4585L18.1804 18.7044V21.818C18.1804 23.3137 18.7691 23.7971 19.2628 23.9385C19.7569 24.08 20.512 23.9834 21.3047 22.7151L23.653 18.9644C23.7283 18.8434 23.7976 18.739 23.861 18.6488V20.5454C23.861 21.9434 24.4294 23.0615 25.4201 23.6122C26.3133 24.1088 27.4363 24.0639 28.3513 23.4951C29.4603 22.8049 30.0579 21.5332 29.9956 20.0005Z" fill="white"></path></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Ranking</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/charts/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#23DCF5"></circle><path d="M17.2121 9.33337H16.6667V15.3334H22.6667V14.7879C22.6667 11.7879 20.2121 9.33337 17.2121 9.33337Z" fill="white"></path><path d="M15.5667 11.3334H15C11.8833 11.3334 9.33333 13.8834 9.33333 17C9.33333 20.1167 11.8833 22.6667 15 22.6667C18.1167 22.6667 20.6667 20.1167 20.6667 17V16.4334H15.5667V11.3334Z" fill="white"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Global Charts</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/best-cryptos/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#8A3FFC"></circle><circle cx="11.3333" cy="11.3333" r="1.33333" fill="white"></circle><circle cx="11.3333" cy="16" r="1.33333" fill="white"></circle><ellipse cx="11.3333" cy="20.6667" rx="1.33333" ry="1.33333" fill="white"></ellipse><circle cx="16" cy="11.3333" r="1.33333" fill="white"></circle><circle cx="16" cy="16" r="1.33333" fill="white"></circle><ellipse cx="16" cy="20.6667" rx="1.33333" ry="1.33333" fill="white"></ellipse><ellipse cx="20.6667" cy="11.3333" rx="1.33333" ry="1.33333" fill="white"></ellipse><ellipse cx="20.6667" cy="16" rx="1.33333" ry="1.33333" fill="white"></ellipse><circle cx="20.6667" cy="20.6667" r="1.33333" fill="white"></circle></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Spotlight</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/gainers-losers/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#16C784"></circle><path d="M22 12.6666L16.6 18.6666L13 15.0666L10 18.0666" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M17.7995 12.6666H21.9995V16.8666" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Gainers &amp; Losers</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/new/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#2444D4"></circle><path d="M10 12.6666H22M10 16H15.4545M10 19.3333H15.4545" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M20 15.3334V19.3334M22 17.3334H18" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Recently Added</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/historical/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#EFF2F5"></circle><path d="M16.3333 13.3334V16.3334L18.3333 18" stroke="#808A9D" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12.6576 15.9828L11.333 17.3247L9.99103 16.0001" stroke="#808A9D" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11.3332 16C11.3332 13.0544 13.7211 10.6666 16.6666 10.6666C19.6121 10.6666 21.9999 13.0544 21.9999 16C21.9999 18.9455 19.6121 21.3333 16.6666 21.3333C15.9309 21.3333 15.2301 21.1843 14.5925 20.915C14.2361 20.7644 13.8994 20.5761 13.5875 20.3552" stroke="#808A9D" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Historical Snapshots</p></div></a></div></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><p font-size="16" font-weight="600" color="text" class="sc-AxhUy fEdfVy">Exchanges</p><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="22" width="22" viewBox="0 0 24 24" class="sc-AxhCb jDlxxm"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div><div style="height:0px" class="swwyas-3 dzLjvV"><div class="swwyas-4 fiLTGu"><div class="swwyas-5 caYbXb"><a target="_self" href="/rankings/exchanges/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><circle cx="20" cy="20" r="20" fill="#3861FB"></circle><path d="M13 20L20 13L27 20L20 27L13 20Z" fill="white"></path></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Spot</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/rankings/exchanges/derivatives/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><circle cx="20" cy="20" r="20" fill="#2444D4"></circle><path d="M13 24L20 14L27 24H13Z" fill="white"></path></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Derivatives</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/rankings/exchanges/dex/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><circle cx="20" cy="20" r="20" fill="#152CAD"></circle><path d="M13 16L16 13L19 16L16 19L13 16Z" fill="white"></path><path d="M21 16L24 13L27 16L24 19L21 16Z" fill="white"></path><path d="M21 24L24 21L27 24L24 27L21 24Z" fill="white"></path><path d="M13 24L16 21L19 24L16 27L13 24Z" fill="white"></path></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">DEX</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/how-to-buy-bitcoin/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#16C784"></circle><path d="M22.2742 11.8013C21.4661 11.4623 20.6573 11.3334 19.849 11.3334C17.283 11.3332 14.7171 12.6321 12.1511 12.6321C11.5075 12.6321 10.8644 12.5505 10.2209 12.3463C10.1486 12.3234 10.0761 12.3125 10.0052 12.3125C9.64671 12.3125 9.33337 12.59 9.33337 12.9752V19.5848C9.33337 19.848 9.484 20.0973 9.72587 20.1986C10.534 20.5377 11.3427 20.6667 12.1511 20.6667C14.7171 20.6667 17.2832 19.3677 19.8492 19.3677C20.4927 19.3677 21.1359 19.4494 21.7794 19.6536C21.8517 19.6765 21.9242 19.6873 21.995 19.6873C22.3536 19.6873 22.6669 19.4098 22.6669 19.0246V12.4152C22.6667 12.1519 22.5161 11.9027 22.2742 11.8013ZM16 18C15.0794 18 14.3334 17.1044 14.3334 16C14.3334 14.8955 15.0796 14 16 14C16.9205 14 17.6667 14.8955 17.6667 16C17.6667 17.1048 16.9202 18 16 18Z" fill="white"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Where to Buy</p></div></a></div></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><a href="/portfolio-tracker" style="display:block;width:100%;line-height:48px" class="cmc-link">Portfolio</a></div><div style="height:0px" class="swwyas-3 dzLjvV"><div class="swwyas-4 fiLTGu"></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><a href="/watchlist/" style="display:block;width:100%;line-height:48px" class="cmc-link">Watchlist</a></div><div style="height:0px" class="swwyas-3 dzLjvV"><div class="swwyas-4 fiLTGu"></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><p font-size="16" font-weight="600" color="text" class="sc-AxhUy fEdfVy">Products</p><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="22" width="22" viewBox="0 0 24 24" class="sc-AxhCb jDlxxm"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div><div style="height:0px" class="swwyas-3 dzLjvV"><div class="swwyas-4 fiLTGu"><div class="swwyas-5 caYbXb"><a target="_self" href="/converter/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#8A3FFC"></circle><path d="M19.0001 11L21.3334 13.3333M21.3334 13.3333L19.0001 15.6667M21.3334 13.3333H11.3334M13.0001 16.3333L10.6667 18.6667M10.6667 18.6667L13.0001 21M10.6667 18.6667H20.6667" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Converter</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_blank" href="https://coinmarketcap.com/mobile/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#3861FB"></circle><path d="M11.3333 11.3334C11.3333 10.2288 12.2287 9.33337 13.3333 9.33337H18.6666C19.7712 9.33337 20.6666 10.2288 20.6666 11.3334V19.3334H11.3333V11.3334Z" fill="white"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M20.6666 19.3334H11.3333V20.6667C11.3333 21.7713 12.2287 22.6667 13.3333 22.6667H18.6666C19.7712 22.6667 20.6666 21.7713 20.6666 20.6667V19.3334ZM15.9999 22C15.4466 22 14.9999 21.5534 14.9999 21C14.9999 20.4467 15.4466 20 15.9999 20C16.5533 20 16.9999 20.4467 16.9999 21C16.9999 21.5534 16.5533 22 15.9999 22Z" fill="white"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Mobile Apps</p><div class="swwyas-9 vEeCz"><svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" fill="none" class="sc-AxhCb loZKFC"><svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a target="_blank" href="https://blockchain.coinmarketcap.com" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><circle cx="20" cy="20" r="20" fill="#17DF94"></circle><path d="M23.6794 23.6794L26.6667 26.6667M25.4546 19.3939C25.4546 22.7411 22.7412 25.4545 19.394 25.4545C16.0468 25.4545 13.3334 22.7411 13.3334 19.3939C13.3334 16.0468 16.0468 13.3333 19.394 13.3333C22.7412 13.3333 25.4546 16.0468 25.4546 19.3939Z" stroke="white" fill="none" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Blockchain Explorer</p><div class="swwyas-9 vEeCz"><svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" fill="none" class="sc-AxhCb loZKFC"><svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a target="_blank" href="https://interest.coinmarketcap.com" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#23DCF5"></circle><path d="M13.3749 14.2C14.5025 14.2 15.4166 13.2598 15.4166 12.1C15.4166 10.9402 14.5025 10 13.3749 10C12.2473 10 11.3333 10.9402 11.3333 12.1C11.3333 13.2598 12.2473 14.2 13.3749 14.2Z" fill="white"></path><path d="M18.6249 22C19.7525 22 20.6666 21.0598 20.6666 19.9C20.6666 18.7402 19.7525 17.8 18.6249 17.8C17.4973 17.8 16.5833 18.7402 16.5833 19.9C16.5833 21.0598 17.4973 22 18.6249 22Z" fill="white"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M20.5481 11.3221C20.812 11.5788 20.818 12.0008 20.5613 12.2648L12.3947 20.6648C12.138 20.9288 11.7159 20.9347 11.4519 20.6781C11.188 20.4214 11.182 19.9994 11.4387 19.7354L19.6053 11.3354C19.862 11.0714 20.2841 11.0654 20.5481 11.3221Z" fill="white"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Interest</p><div class="swwyas-9 vEeCz"><svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" fill="none" class="sc-AxhCb loZKFC"><svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a target="_blank" href="https://jobs.coinmarketcap.com" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#F5B97F"></circle><path fill-rule="evenodd" clip-rule="evenodd" d="M14 16H10V19.3333C10 20.4379 10.8954 21.3333 12 21.3333H20C21.1046 21.3333 22 20.4379 22 19.3333V16H18V16.5238C18 17.0761 17.5523 17.5238 17 17.5238H15C14.4477 17.5238 14 17.0761 14 16.5238V16Z" fill="white"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M17.875 12H17.8333H16.375H15.625H14.1667H14.125V12.1666V13.3333H17.875V12.1666V12ZM19.3333 13.3333V12V11.8334V11.6666C19.3333 11.1143 18.8856 10.6666 18.3333 10.6666H17.875H14.125H13.6667C13.1144 10.6666 12.6667 11.1143 12.6667 11.6666V11.8334V12V13.3333H12C10.8954 13.3333 10 14.2287 10 15.3333V16H22V15.3333C22 14.2287 21.1046 13.3333 20 13.3333H19.3333Z" fill="white"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Jobs Board</p><div class="swwyas-9 vEeCz"><svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" fill="none" class="sc-AxhCb loZKFC"><svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div></div></a></div><div class="swwyas-8 lhmcUg"></div><div class="swwyas-5 caYbXb"><a target="_blank" href="https://pro.coinmarketcap.com/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#EFF2F5"></circle><path d="M12.6667 13.3334L10 16L12.6667 18.6667M19.3333 13.3334L22 16L19.3333 18.6667" stroke="#808A9D" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M14.6667 20.6667L17.3334 11.3334" stroke="#808A9D" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Crypto API</p><div class="swwyas-9 vEeCz"><svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" fill="none" class="sc-AxhCb loZKFC"><svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/widget/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#EFF2F5"></circle><path fill-rule="evenodd" clip-rule="evenodd" d="M11.6667 10.6666C11.1145 10.6666 10.6667 11.1143 10.6667 11.6666V14.3333C10.6667 14.8856 11.1145 15.3333 11.6667 15.3333H14.3334C14.8857 15.3333 15.3334 14.8856 15.3334 14.3333V11.6666C15.3334 11.1143 14.8857 10.6666 14.3334 10.6666H11.6667ZM17.6667 10.6666C17.1145 10.6666 16.6667 11.1143 16.6667 11.6666V14.3333C16.6667 14.8856 17.1145 15.3333 17.6667 15.3333H20.3334C20.8857 15.3333 21.3334 14.8856 21.3334 14.3333V11.6666C21.3334 11.1143 20.8857 10.6666 20.3334 10.6666H17.6667ZM16.6667 17.6666C16.6667 17.1143 17.1145 16.6666 17.6667 16.6666H20.3334C20.8857 16.6666 21.3334 17.1143 21.3334 17.6666V20.3333C21.3334 20.8856 20.8857 21.3333 20.3334 21.3333H17.6667C17.1145 21.3333 16.6667 20.8856 16.6667 20.3333V17.6666ZM11.6667 16.6666C11.1145 16.6666 10.6667 17.1143 10.6667 17.6666V20.3333C10.6667 20.8856 11.1145 21.3333 11.6667 21.3333H14.3334C14.8857 21.3333 15.3334 20.8856 15.3334 20.3333V17.6666C15.3334 17.1143 14.8857 16.6666 14.3334 16.6666H11.6667Z" fill="#808A9D"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Site Widgets</p></div></a></div></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><p font-size="16" font-weight="600" color="text" class="sc-AxhUy fEdfVy"><div style="position:relative">Learn</div></p><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="22" width="22" viewBox="0 0 24 24" class="sc-AxhCb jDlxxm"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div><div style="height:0px" class="swwyas-3 dzLjvV"><div class="swwyas-4 fiLTGu"><div class="swwyas-5 caYbXb"><a target="_blank" href="https://coinmarketcap.com/alexandria/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="20" fill="#3861FB"></circle><rect x="13" y="13" width="14" height="14" rx="2" fill="url(#paint0_linear)"></rect><defs><linearGradient id="paint0_linear" x1="20" y1="13" x2="20" y2="27" gradientUnits="userSpaceOnUse"><stop stop-color="white" stop-opacity="0.3"></stop><stop offset="1" stop-color="white" stop-opacity="0.84"></stop></linearGradient></defs></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Alexandria</p><div class="swwyas-9 vEeCz"><svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" fill="none" class="sc-AxhCb loZKFC"><svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a target="_blank" href="https://coinmarketcap.com/earn/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#23DCF5"></circle><circle cx="16" cy="16" r="6" fill="url(#paint0_linear)"></circle><defs><linearGradient id="paint0_linear" x1="16" y1="10" x2="16" y2="22" gradientUnits="userSpaceOnUse"><stop stop-color="white" stop-opacity="0.3"></stop><stop offset="1" stop-color="white" stop-opacity="0.84"></stop></linearGradient></defs></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Earn</p><div class="swwyas-9 vEeCz"><svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" fill="none" class="sc-AxhCb loZKFC"><svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div><span class="sc-AxiKw eTRJtf">New</span></div></a></div><div class="swwyas-8 lhmcUg"></div><div class="swwyas-5 caYbXb"><a target="_blank" href="https://coinmarketcap.com/alexandria/glossary" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#EFF2F5"></circle><path d="M21.8846 10.668C20.6161 10.7421 18.0948 11.0116 16.5383 11.9916C16.4309 12.0592 16.3701 12.1795 16.3701 12.3052V20.9687C16.3701 21.2437 16.6624 21.4175 16.9089 21.2899C18.5103 20.4608 20.8263 20.2347 21.9714 20.1728C22.3624 20.1516 22.6664 19.8292 22.6664 19.4428V11.399C22.6666 10.9773 22.311 10.6433 21.8846 10.668ZM15.4613 11.9916C13.905 11.0116 11.3837 10.7423 10.1152 10.668C9.68881 10.6433 9.33325 10.9773 9.33325 11.399V19.443C9.33325 19.8297 9.63719 20.152 10.0282 20.173C11.1738 20.2349 13.4909 20.4613 15.0923 21.2908C15.3381 21.4182 15.6295 21.2447 15.6295 20.9704V12.3009C15.6295 12.1749 15.5689 12.0595 15.4613 11.9916Z" fill="#808A9D"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Glossary</p><div class="swwyas-9 vEeCz"><svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" fill="none" class="sc-AxhCb loZKFC"><svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/newsletter/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#EFF2F5"></circle><path d="M22.414 14.4152C22.5155 14.3398 22.6666 14.4103 22.6666 14.5294V19.4999C22.6666 20.144 22.1067 20.6666 21.4166 20.6666H10.5833C9.89315 20.6666 9.33325 20.144 9.33325 19.4999V14.5319C9.33325 14.4103 9.48169 14.3423 9.58586 14.4176C10.1692 14.8405 10.9426 15.3777 13.5989 17.1787C14.1484 17.553 15.0754 18.3405 15.9999 18.3357C16.9296 18.343 17.8749 17.5385 18.4036 17.1787C21.0598 15.3777 21.8306 14.8381 22.414 14.4152ZM15.9999 17.5555C16.6041 17.5652 17.4739 16.8458 17.9114 16.5492C21.3671 14.2086 21.6301 14.0044 22.427 13.4211C22.578 13.3117 22.6666 13.1416 22.6666 12.9617V12.4999C22.6666 11.8558 22.1067 11.3333 21.4166 11.3333H10.5833C9.89315 11.3333 9.33325 11.8558 9.33325 12.4999V12.9617C9.33325 13.1416 9.42179 13.3093 9.57284 13.4211C10.3697 14.002 10.6327 14.2086 14.0885 16.5492C14.526 16.8458 15.3958 17.5652 15.9999 17.5555Z" fill="#808A9D"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Newsletter</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/events/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#EFF2F5"></circle><path d="M10.9525 14.5H21.0477C21.2048 14.5 21.3334 14.6266 21.3334 14.7812V20.875C21.3334 21.4961 20.8215 22 20.1906 22H11.8096C11.1787 22 10.6667 21.4961 10.6667 20.875V14.7812C10.6667 14.6266 10.7953 14.5 10.9525 14.5ZM21.3334 13.4688V12.625C21.3334 12.0039 20.8215 11.5 20.1906 11.5H19.0477V10.2812C19.0477 10.1266 18.9191 10 18.762 10H17.8096C17.6525 10 17.5239 10.1266 17.5239 10.2812V11.5H14.4763V10.2812C14.4763 10.1266 14.3477 10 14.1906 10H13.2382C13.081 10 12.9525 10.1266 12.9525 10.2812V11.5H11.8096C11.1787 11.5 10.6667 12.0039 10.6667 12.625V13.4688C10.6667 13.6234 10.7953 13.75 10.9525 13.75H21.0477C21.2048 13.75 21.3334 13.6234 21.3334 13.4688Z" fill="#808A9D"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Events Calendar</p></div></a></div><div class="swwyas-5 caYbXb"><a target="_self" href="/methodology/" class="swwyas-6 dvzNTs cmc-link"><div class="swwyas-7 nLWjZ"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="40" width="40" viewBox="0 0 40 40" class="sc-AxhCb bKwmGO"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#EFF2F5"></circle><path d="M13.8803 21.1651C13.8806 21.3289 13.9299 21.4893 14.0224 21.6257L14.4756 22.2947C14.553 22.4091 14.658 22.5029 14.7812 22.5678C14.9044 22.6326 15.0421 22.6666 15.1819 22.6666H16.8182C16.958 22.6666 17.0957 22.6326 17.2189 22.5678C17.3421 22.5029 17.4471 22.4091 17.5245 22.2947L17.9777 21.6257C18.0702 21.4892 18.1196 21.329 18.1198 21.1651L18.1209 20.1664H13.879L13.8803 21.1651ZM11.3333 13.9165C11.3333 15.072 11.7694 16.1261 12.4883 16.9316C12.9263 17.4224 13.6114 18.4479 13.8726 19.313C13.8737 19.3198 13.8745 19.3266 13.8755 19.3333H18.1243C18.1254 19.3266 18.1262 19.32 18.1272 19.313C18.3884 18.4479 19.0736 17.4224 19.5116 16.9316C20.2304 16.1261 20.6666 15.072 20.6666 13.9165C20.6666 11.3804 18.5695 9.32546 15.9853 9.33327C13.2805 9.34135 11.3333 11.4939 11.3333 13.9165ZM15.9999 11.8332C14.8303 11.8332 13.8787 12.7678 13.8787 13.9165C13.8787 14.1467 13.6889 14.3332 13.4545 14.3332C13.2201 14.3332 13.0302 14.1467 13.0302 13.9165C13.0302 12.3082 14.3623 10.9999 15.9999 10.9999C16.2343 10.9999 16.4242 11.1864 16.4242 11.4166C16.4242 11.6468 16.2343 11.8332 15.9999 11.8332Z" fill="#808A9D"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p font-size="16" font-weight="500" style="white-space:nowrap" color="text" class="sc-AxhUy juchaL">Methodology</p></div></a></div></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><a href="/bitcoin-analytics" style="display:block;width:100%;line-height:48px" class="cmc-link">Buy Bitcoin</a></div><div style="height:0px" class="swwyas-3 dzLjvV"><div class="swwyas-4 fiLTGu"></div></div></li><li role="menuitem" class="of8kjr-2 cCfPRT"><div class="uikit-icon-adjust"><span class="sc-AxhCb fwIcUB"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="18px" width="18px" viewBox="0 0 24 24" class="sc-AxhCb iQwsru"><path d="M12 22C13.4191 22 14.5702 20.8809 14.5702 19.5H9.42978C9.42978 20.8809 10.5809 22 12 22ZM20.654 16.152C19.8778 15.341 18.4253 14.1211 18.4253 10.125C18.4253 7.08984 16.2364 4.66016 13.2849 4.06406V3.25C13.2849 2.55977 12.7096 2 12 2C11.2904 2 10.7151 2.55977 10.7151 3.25V4.06406C7.76358 4.66016 5.57466 7.08984 5.57466 10.125C5.57466 14.1211 4.12221 15.341 3.34596 16.152C3.10489 16.4039 2.99802 16.7051 3.00003 17C3.00445 17.6406 3.52154 18.25 4.28976 18.25H19.7102C20.4785 18.25 20.996 17.6406 21 17C21.002 16.7051 20.8951 16.4035 20.654 16.152Z"></path></svg></span>Announcements</div></li></ul><div class="lbfhry-1 eJUUCc"><div class="lbfhry-2 cqYXSa"><div class="cmc-popover"><div class="cmc-popover__trigger"><button title="Change your language" class="lbfhry-0 kgfbam"><span class="sc-1l1794m-1 jVkEMh">English</span><span class="sc-1l1794m-0 ejAOOE"><span class="icon-Caret-down"></span></span></button></div></div></div><div class="lbfhry-2 lbfhry-3 ffesPn"><div class="cmc-popover"><div class="cmc-popover__trigger"><button title="Change your display currency" data-qa-id="button-global-currency-picker" class="lbfhry-0 kgfbam"><span class="sc-1ta5cl2-0 ihKvrC"></span><span class="sc-1wnc593-1 bBcNle">USD</span><span class="sc-1wnc593-0 bMHyH"><span class="icon-Caret-down"></span></span></button></div></div></div><div class="lbfhry-7 kFpHDG"><button type="button" title="Day/Night Mode" class="lbfhry-0 lbfhry-8 gWEyHG cmc-theme-picker cmc-theme-picker--day"><span class="icon-Moon"></span></button></div></div><div class="of8kjr-3 gZSKzh"><div><span class="of8kjr-4 fmHBpc"><a href="/disclaimer/" class="of8kjr-5 dqwTJv cmc-link">Disclaimer</a></span><span class="of8kjr-4 fmHBpc"><a href="/request/" class="of8kjr-5 dqwTJv cmc-link">Request Form</a></span><span class="of8kjr-4 fmHBpc"><a href="/terms/" class="of8kjr-5 dqwTJv cmc-link">Terms of Use</a></span></div><div><span class="of8kjr-4 fmHBpc"><a href="/privacy/" class="of8kjr-5 dqwTJv cmc-link">Privacy Policy</a></span><span class="of8kjr-4 fmHBpc"><a href="/about/" class="of8kjr-5 dqwTJv cmc-link">About</a></span></div><hr /><div class="of8kjr-6 cKzWZG"><a target="_blank" rel="noopener nofollow noreferrer" href="https://twitter.com/CoinMarketCap" title="Twitter" class="of8kjr-7 lbjAWJ cmc-link"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M22 5.89691C21.25 6.2268 20.5 6.47423 19.6667 6.5567C20.5 6.06186 21.1667 5.23711 21.5 4.3299C20.6667 4.82474 19.8333 5.15464 18.9167 5.31959C18.1667 4.49485 17.0833 4 15.9167 4C13.6667 4 11.8333 5.81443 11.8333 8.04124C11.8333 8.37113 11.8333 8.70103 11.9167 8.94845C8.41667 8.7835 5.41667 7.13402 3.41667 4.65979C3 5.31959 2.83333 5.97938 2.83333 6.72165C2.83333 8.12371 3.58333 9.36082 4.66667 10.1031C4 10.1031 3.33333 9.93814 2.83333 9.60825C2.83333 9.60825 2.83333 9.60825 2.83333 9.69072C2.83333 11.6701 4.25 13.3196 6.08333 13.6495C5.75 13.732 5.41667 13.8144 5 13.8144C4.75 13.8144 4.5 13.8144 4.25 13.732C4.75 15.3814 6.25 16.5361 8.08333 16.5361C6.66667 17.6082 4.91667 18.268 3 18.268C2.66667 18.268 2.33333 18.268 2 18.1856C3.83333 19.3402 6 20 8.25 20C15.8333 20 19.9167 13.8144 19.9167 8.45361C19.9167 8.28866 19.9167 8.12371 19.9167 7.95876C20.75 7.38144 21.4167 6.63917 22 5.89691Z" fill="currenColor"></path></svg></a></div><div class="of8kjr-6 cKzWZG"><a target="_blank" rel="noopener nofollow noreferrer" href="https://www.facebook.com/CoinMarketCap" title="Facebook" class="of8kjr-7 lbjAWJ cmc-link"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M20.3333 2H3.66667C2.74583 2 2 2.74583 2 3.66667V20.3333C2 21.2542 2.74583 22 3.66667 22H12.8333V14.5H10.3333V11.1667H12.8333V9.01083C12.8333 6.4275 14.4108 5.02083 16.7158 5.02083C17.82 5.02083 18.7683 5.10333 19.045 5.14V7.84L17.4467 7.84083C16.1933 7.84083 15.9508 8.43667 15.9508 9.31V11.1667H19.6508L18.8175 14.5H15.9508V22H20.3333C21.2542 22 22 21.2542 22 20.3333V3.66667C22 2.74583 21.2542 2 20.3333 2Z" fill="currentColor"></path></svg></a></div><div class="of8kjr-6 cKzWZG"><a target="_blank" rel="noopener nofollow noreferrer" href="https://t.me/CoinMarketCap" title="Telegram" class="of8kjr-7 lbjAWJ cmc-link"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M21.961 4.33581C21.9448 4.26415 21.9094 4.19792 21.8583 4.14382C21.8072 4.08972 21.7423 4.04967 21.6702 4.02773C21.4074 3.97723 21.1355 3.99594 20.8827 4.08191C20.8827 4.08191 3.35851 10.1941 2.35768 10.8709C2.14268 11.0165 2.07018 11.1014 2.03434 11.2008C1.86101 11.686 2.40018 11.8946 2.40018 11.8946L6.91684 13.3226C6.99321 13.3359 7.07174 13.3315 7.14601 13.3097C8.17268 12.6798 17.4793 6.97509 18.0202 6.78345C18.1035 6.75919 18.1677 6.78345 18.151 6.84409C17.936 7.57588 9.89351 14.508 9.84934 14.5501C9.82783 14.5672 9.81107 14.5892 9.80059 14.6142C9.79011 14.6392 9.78624 14.6664 9.78934 14.6932L9.36768 18.9723C9.36768 18.9723 9.19101 20.3041 10.5635 18.9723C11.5368 18.0271 12.471 17.2443 12.9377 16.8635C14.491 17.9042 16.1618 19.0548 16.8827 19.6572C17.0039 19.7711 17.1476 19.8601 17.3051 19.9189C17.4626 19.9776 17.6307 20.005 17.7993 19.9993C18.007 19.9747 18.2021 19.8894 18.3585 19.7546C18.515 19.6198 18.6254 19.442 18.6752 19.2448C18.6752 19.2448 21.8668 6.77375 21.9735 5.10317C21.9843 4.94145 21.9985 4.83472 22.0002 4.72232C22.0054 4.59235 21.9922 4.46231 21.961 4.33581Z" fill="currenColor"></path></svg></a></div><div class="of8kjr-6 cKzWZG"><a target="_blank" rel="noopener nofollow noreferrer" href="https://www.linkedin.com/company/coinmarketcap/" title="LinkedIn" class="of8kjr-7 lbjAWJ cmc-link"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M21.1667 2H2.83333C2.33333 2 2 2.33333 2 2.83333V21.1667C2 21.6667 2.33333 22 2.83333 22H21.1667C21.6667 22 22 21.6667 22 21.1667V2.83333C22 2.33333 21.6667 2 21.1667 2ZM7.91667 19.0833H5V9.5H8V19.0833H7.91667ZM6.41667 8.16667C5.5 8.16667 4.66667 7.41667 4.66667 6.41667C4.66667 5.5 5.41667 4.66667 6.41667 4.66667C7.33333 4.66667 8.16667 5.41667 8.16667 6.41667C8.16667 7.41667 7.41667 8.16667 6.41667 8.16667ZM19.0833 19.0833H16.0833V14.4167C16.0833 13.3333 16.0833 11.9167 14.5833 11.9167C13 11.9167 12.8333 13.0833 12.8333 14.3333V19.0833H9.83333V9.5H12.6667V10.8333C13.0833 10.0833 14 9.33333 15.5 9.33333C18.5 9.33333 19.0833 11.3333 19.0833 13.9167V19.0833Z" fill="currenColor"></path></svg></a></div><div class="of8kjr-6 cKzWZG"><a target="_blank" rel="noopener nofollow noreferrer" href="https://www.instagram.com/coinmarketcap/" title="Instagram" class="of8kjr-7 lbjAWJ cmc-link"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M12 3.80167C14.67 3.80167 14.9867 3.81167 16.0408 3.86C17.1792 3.91167 18.235 4.14 19.0475 4.9525C19.86 5.765 20.0883 6.82083 20.14 7.95917C20.1883 9.01333 20.1983 9.33 20.1983 12C20.1983 14.67 20.1883 14.9867 20.14 16.0408C20.0883 17.1792 19.86 18.235 19.0475 19.0475C18.235 19.86 17.1792 20.0883 16.0408 20.14C14.9867 20.1883 14.67 20.1983 12 20.1983C9.33 20.1983 9.01333 20.1883 7.95917 20.14C6.82083 20.0883 5.765 19.86 4.9525 19.0475C4.14 18.235 3.91167 17.1792 3.86 16.0408C3.81167 14.9867 3.80167 14.67 3.80167 12C3.80167 9.33 3.81167 9.01333 3.86 7.95917C3.91167 6.82083 4.14 5.765 4.9525 4.9525C5.765 4.14 6.82083 3.91167 7.95917 3.86C9.01333 3.81167 9.33 3.80167 12 3.80167ZM12 2C9.28417 2 8.94333 2.01167 7.87667 2.06C6.25167 2.13417 4.82417 2.5325 3.67833 3.67833C2.5325 4.82417 2.13417 6.25167 2.06 7.87667C2.01167 8.94333 2 9.28417 2 12C2 14.7158 2.01167 15.0567 2.06 16.1233C2.13417 17.7483 2.5325 19.1758 3.67833 20.3217C4.82417 21.4675 6.25167 21.8658 7.87667 21.94C8.94333 21.9883 9.28417 22 12 22C14.7158 22 15.0567 21.9883 16.1233 21.94C17.7483 21.8658 19.1758 21.4675 20.3217 20.3217C21.4675 19.1758 21.8658 17.7483 21.94 16.1233C21.9883 15.0567 22 14.7158 22 12C22 9.28417 21.9883 8.94333 21.94 7.87667C21.8658 6.25167 21.4675 4.82417 20.3217 3.67833C19.1758 2.5325 17.7483 2.13417 16.1233 2.06C15.0567 2.01167 14.7158 2 12 2Z" fill="currenColor"></path><path d="M12 6.86497C9.16416 6.86497 6.865 9.16414 6.865 12C6.865 14.8358 9.16416 17.135 12 17.135C14.8358 17.135 17.135 14.8358 17.135 12C17.135 9.16414 14.8358 6.86497 12 6.86497ZM12 15.3333C10.1592 15.3333 8.66666 13.8408 8.66666 12C8.66666 10.1591 10.1592 8.66664 12 8.66664C13.8408 8.66664 15.3333 10.1591 15.3333 12C15.3333 13.8408 13.8408 15.3333 12 15.3333Z" fill="currenColor"></path><path d="M17.3384 7.86167C18.0011 7.86167 18.5384 7.32441 18.5384 6.66167C18.5384 5.99893 18.0011 5.46167 17.3384 5.46167C16.6756 5.46167 16.1384 5.99893 16.1384 6.66167C16.1384 7.32441 16.6756 7.86167 17.3384 7.86167Z" fill="currenColor"></path></svg></a></div><div class="of8kjr-6 cKzWZG"><a target="_blank" rel="noopener nofollow noreferrer" href="https://www.reddit.com/r/CoinMarketCap" title="Reddit" class="of8kjr-7 lbjAWJ cmc-link"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M22 11.8218C22 10.396 20.9167 9.23762 19.5833 9.23762C19 9.23762 18.5 9.41584 18.0833 9.77228C16.5833 8.79208 14.75 8.16832 12.75 8.07921L13.75 4.60396L16.5833 5.31683C16.6667 6.38614 17.5 7.27723 18.5833 7.27723C19.6667 7.27723 20.5833 6.29703 20.5833 5.13861C20.5833 3.9802 19.6667 3 18.5833 3C17.8333 3 17.1667 3.44554 16.8333 4.15842L13.5 3.35644C13.25 3.26733 12.9167 3.44554 12.8333 3.71287L11.5833 8.07921C9.5 8.16832 7.41667 8.70297 5.91667 9.77228C5.5 9.41584 5 9.23762 4.41667 9.23762C3.08333 9.23762 2 10.396 2 11.8218C2 12.7129 2.41667 13.5149 3 13.9604C3 14.1386 3 14.4059 3 14.5842C3 16.3663 4 17.9703 5.75 19.2178C7.41667 20.3762 9.66667 21 12 21C14.3333 21 16.5833 20.3762 18.25 19.2178C20 17.9703 21 16.3663 21 14.5842C21 14.4059 21 14.2277 21 14.0495C21.5833 13.5149 22 12.7129 22 11.8218ZM18.6667 4.15842C19.1667 4.15842 19.5833 4.60396 19.5833 5.13861C19.5833 5.67327 19.1667 6.11881 18.6667 6.11881C18.1667 6.11881 17.75 5.67327 17.75 5.13861C17.75 4.60396 18.1667 4.15842 18.6667 4.15842ZM7.66667 13.4257C7.66667 12.6238 8.33333 12 9 12C9.75 12 10.3333 12.7129 10.3333 13.4257C10.3333 14.1386 9.75 14.8515 9 14.8515C8.33333 14.8515 7.66667 14.2277 7.66667 13.4257ZM15.3333 17.6139C14.6667 18.3267 13.5833 18.6832 12.0833 18.6832C10.5833 18.6832 9.5 18.3267 8.83333 17.6139C8.58333 17.3465 8.58333 16.9901 8.83333 16.8119C9.08333 16.5446 9.41667 16.5446 9.58333 16.8119C10.0833 17.3465 10.9167 17.6139 12.0833 17.6139C13.25 17.6139 14.0833 17.3465 14.5833 16.8119C14.8333 16.5446 15.1667 16.5446 15.3333 16.8119C15.5 17.0792 15.5 17.4356 15.3333 17.6139ZM15 14.8515C14.25 14.8515 13.5833 14.2277 13.5833 13.4257C13.5833 12.6238 14.25 12 15 12C15.75 12 16.3333 12.7129 16.3333 13.4257C16.3333 14.1386 15.75 14.8515 15 14.8515Z" fill="currenColor"></path></svg></a></div></div></div></div></div><div class="sc-18ghxad-0 ifvooB"><div class="container"><div class="cmc-global-stats__fade"></div><div class="cmc-global-stats__content"><div class="cmc-global-stats__inner-content"><span class="sc-12ja2s9-0 eALoKW">Market Cap<!-- -->: \xc2\xa0<a href="/charts/" class="cmc-link">$1,475,809,405,042</a></span><span class="sc-12ja2s9-0 eALoKW">24h Vol<!-- -->: \xc2\xa0<a href="/charts/" class="cmc-link">$135,046,987,299</a></span><span class="sc-12ja2s9-0 eALoKW">Dominance<!-- -->: \xc2\xa0<a href="/charts/#dominance-percentage" class="cmc-link">BTC<!-- -->: <!-- -->60.6%<!-- -->\xc2\xa0<!-- -->ETH<!-- -->: <!-- -->11.9%</a></span><span class="sc-12ja2s9-0 eALoKW">Cryptocurrencies<!-- -->: \xc2\xa0<a href="/all/views/all/" class="cmc-link">8,697</a></span><span class="sc-12ja2s9-0 eALoKW">Markets<!-- -->: \xc2\xa0<a href="/currencies/volume/24-hour/" class="cmc-link">35,174</a></span><span class="sc-12ja2s9-0 eALoKW"><span class="icon-Gas-Filled" style="margin-right:4px;vertical-align:middle"></span>ETH Gas<!-- -->: \xc2\xa0<a>90<!-- --> <!-- -->Gwei<span class="icon-Chevron-down gasDownIcon___T2cjc"></span></a></span></div></div></div></div></div></div><div class="sc-fzqARJ eLpUJW cmc-body-wrapper"><div class="grid"><div class="cmc-homepage"><section display="flex" class="sc-AxhCb bkedAk"><div class="sc-AxhCb dYbySe"><h1 font-size="1,5" color="text" class="sc-fzqBZW iVccbF">Today&#x27;s Cryptocurrency Prices by Market Cap</h1><div class="sc-AxhCb bYwLMj"><div class="sc-AxhCb keRptt"><p color="neutral6" style="display:inline" font-size="1" class="sc-AxhUy gEvIrr">The global crypto market cap is <span color="neutral6" font-weight="semibold" font-size="1" class="sc-AxhUy diNEjy">$1.48T</span>, <!-- -->a <span style="color:var(--down-color);padding:0;border-radius:8px;font-weight:600" class="sc-1puytyg-0 hFlcKs"><span class="icon-Caret-down"></span>3.72<!-- -->%</span> decrease over the last day.</p><div color="neutral5" style="display:inline-block;margin-left:0.5em" class="sc-AxhCb sc-835z3x-0 eAFxmG">Read more</div></div></div><div style="display:none"><div class="sc-AxhCb guSXYp"><p color="neutral6" font-size="1" class="sc-AxhUy evInTq">The total crypto market volume over the last 24 hours is <span color="neutral6" font-weight="semibold" font-size="1" class="sc-AxhUy diNEjy">$135.05B</span>, which makes a <span style="color:var(--up-color);padding:0;border-radius:8px;font-weight:600" class="sc-1puytyg-0 hFlcKs"><span class="icon-Caret-up"></span>5.62<!-- -->%</span> increase.<!-- --> <!-- -->The total volume in DeFi is currently <span color="neutral6" font-weight="semibold" font-size="1" class="sc-AxhUy diNEjy">$12.18B</span>, <span color="neutral6" font-weight="semibold" font-size="1" class="sc-AxhUy diNEjy">9.02%</span> of the total crypto market 24-hour volume.<!-- --> <!-- -->The volume of all stable coins is now <span color="neutral6" font-weight="semibold" font-size="1" class="sc-AxhUy diNEjy">$110.70B</span>, which is <span color="neutral6" font-weight="semibold" font-size="1" class="sc-AxhUy diNEjy">81.97%</span> of the total crypto market 24-hour volume.</p><p color="neutral6" font-size="1" class="sc-AxhUy gEvIrr">Bitcoin&#x27;s price is currently <span color="neutral6" font-weight="semibold" font-size="1" class="sc-AxhUy diNEjy">$47,709.82</span>.</p><p color="neutral6" font-size="1" class="sc-AxhUy gEvIrr">Bitcoin\xe2\x80\x99s dominance is currently <span color="neutral6" font-weight="semibold" font-size="1" class="sc-AxhUy diNEjy">60.62%</span>, a decrease of <span style="color:var(--down-color);padding:0;border-radius:8px;font-weight:600" class="sc-1puytyg-0 hFlcKs"><span class="icon-Caret-down"></span>0.48<!-- -->%</span> over the day.</p></div></div></div><div id="cmc-slot--leaderboard-top" width="100%" class="sc-AxhCb kbfzRn"><div class="sc-1lqrwy2-0 xQvNt"><div class="horizontal-menu" style="align-items:center;display:flex;user-select:none"><div class="scroll-menu-arrow scroll-menu-arrow--disabled"><div class="sc-1lqrwy2-2 kASdkM"><div class="sc-1lqrwy2-3 dnuGLb"><div class="sc-1lqrwy2-1 iFclex"><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="18px" width="18px" viewBox="0 0 24 24" class="sc-AxhCb iQwsru"><path d="M15 6L9 12L15 18" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div></div></div></div><div class="menu-wrapper" style="overflow:hidden;user-select:none"><div class="menu-wrapper--inner" style="transform:translate3d(0px, 0, 0);transition:transform 0s;width:990000px;text-align:left"><div class="menu-item-wrapper " style="display:inline-block" tabindex="0" role="button"><div class="sc-fznBMq ekttti"><div width="304" class="sc-fznNvL dJmEVA"><div src="https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/603dd5aeedc95900191eadf4/1614666484628.png" class="sc-fzocqA dDnRxM"></div><div class="sc-fzonZV fjLydT"><div class="sc-fzqyOu ifuegI">Take a quiz!</div><div class="sc-fzqKxP hKVgLq">Learn and earn $CKB</div></div></div></div></div><div class="menu-item-wrapper " style="display:inline-block" tabindex="0" role="button"><div class="sc-fznBMq ekttti"><div width="304" class="sc-fznNvL dJmEVA"><div src="https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/60386d82bc6ea500157b34fb/1614319262237.png" class="sc-fzocqA jDLPo"></div><div class="sc-fzonZV fjLydT"><div class="sc-fzqyOu ifuegI">Portfolio \xf0\x9f\x94\xa5</div><div class="sc-fzqKxP hKVgLq">Track your trades in one place, not all over the place</div></div></div></div></div><div class="menu-item-wrapper " style="display:inline-block" tabindex="0" role="button"><div class="sc-fznBMq ekttti"><div width="304" class="sc-fznNvL dJmEVA"><div src="https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/6038d61e3e919b0013d44cf2/1614337604165.png" class="sc-fzocqA cjaGHS"></div><div class="sc-fzonZV fjLydT"><div class="sc-fzqyOu ifuegI">Alexandria Learning Corner</div><div class="sc-fzqKxP hKVgLq">Learn about yield farming! \xf0\x9f\x91\xa8\xe2\x80\x8d\xf0\x9f\x8c\xbe</div></div></div></div></div></div></div><div class="scroll-menu-arrow "><div class="sc-1lqrwy2-2 bdcCDi"><div class="sc-1lqrwy2-3 mhtTk"><div class="sc-1lqrwy2-1 iFclex"><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="18px" width="18px" viewBox="0 0 24 24" class="sc-AxhCb iQwsru"><path d="M9 6L15 12L9 18" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div></div></div></div></div></div></div></section><div class="quq9zv-10 snkfi"><div class="quq9zv-9 bFptSr"><span><a href="/watchlist/" class="cmc-link"><button class="sc-Axmtr efDSWh quq9zv-2 quq9zv-5 hFppC"><span class="icon-Star"></span><span class="watchlist-star-text" style="margin:0px 0 0 4px;white-space:pre">Watchlist</span></button></a><a href="/portfolio-tracker" class="cmc-link"><button class="sc-Axmtr efDSWh quq9zv-2 quq9zv-5 hFppC"><svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M13.8182 2H13V11H22V10.1818C22 5.68182 18.3182 2 13.8182 2Z" fill="#A6B0C3"></path><path d="M11.35 5H10.5C5.825 5 2 8.825 2 13.5C2 18.175 5.825 22 10.5 22C15.175 22 19 18.175 19 13.5V12.65H11.35V5Z" fill="#CFD6E4"></path></svg><span class="watchlist-star-text" style="margin:0px 0 0 4px;white-space:pre">Portfolio</span></button></a></span><span><button class="sc-Axmtr efDSWh quq9zv-3 dSenMZ table-control-filter"><span class="sc-AxmLO kdmeeD"><span class="icon-Slider"></span></span>Filters</button></span></div><div class="sc-AxhCb quq9zv-0 quq9zv-1 lfTRgy scroll-initial "><div class="leftArrow"><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M15 6L9 12L15 18" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div><div class="sc-AxhCb bYwLMj table-link-area"><div class="quq9zv-8 ehWQdu"><a href="/watchlist/" class="cmc-link"><button class="sc-Axmtr efDSWh quq9zv-2 quq9zv-5 hFppC"><span class="icon-Star"></span><span class="watchlist-star-text" style="margin:0px 0 0 4px;white-space:pre">Watchlist</span></button></a><a href="/portfolio-tracker" class="cmc-link"><button class="sc-Axmtr efDSWh quq9zv-2 quq9zv-5 hFppC"><svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M13.8182 2H13V11H22V10.1818C22 5.68182 18.3182 2 13.8182 2Z" fill="#A6B0C3"></path><path d="M11.35 5H10.5C5.825 5 2 8.825 2 13.5C2 18.175 5.825 22 10.5 22C15.175 22 19 18.175 19 13.5V12.65H11.35V5Z" fill="#CFD6E4"></path></svg><span class="watchlist-star-text" style="margin:0px 0 0 4px;white-space:pre">Portfolio</span></button></a><div class="quq9zv-6 hTjWKA"></div></div><a href="/" class="table-control-link-button cmc-link"><button selected="" class="sc-Axmtr kRJbDY quq9zv-2 hMHGsN">Cryptocurrencies</button></a><a href="/defi/" class="table-control-link-button cmc-link"><button class="sc-Axmtr kRJbDY quq9zv-2 dTfXAS">DeFi</button></a><a href="/polkadot/" class="table-control-link-button cmc-link"><button class="sc-Axmtr kRJbDY quq9zv-2 dTfXAS">Polkadot Eco</button></a><a href="/nfts/" class="table-control-link-button cmc-link"><button class="sc-Axmtr kRJbDY quq9zv-2 dTfXAS">NFTs &amp; Collectibles</button></a><a href="/bsc/" class="table-control-link-button cmc-link"><button class="sc-Axmtr kRJbDY quq9zv-2 dTfXAS">BSC Eco<span class="quq9zv-7 leKgbR"><div class="sc-188mhkv-0 kJsxWS"><div class="spinner"></div></div></span></button></a><a href="/yield-farming/" class="table-control-link-button cmc-link"><button class="sc-Axmtr kRJbDY quq9zv-2 dTfXAS">Yield Farming</button></a></div><div class="sc-AxhCb bYwLMj table-control-area"><div display="flex" class="sc-AxhCb cUEIif table-control-page-sizer" style="white-space:nowrap"><p color="text2" font-size="12" class="sc-AxhUy jEtXdd">Show rows</p><div class="sc-AxhCb sc-fzpdbB jPpwSF">100<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="14" width="14" viewBox="0 0 24 24" class="sc-AxhCb dqoXIW"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div></div><div class="quq9zv-8 ehWQdu"><button class="sc-Axmtr efDSWh quq9zv-3 dSenMZ table-control-filter"><span class="sc-AxmLO kdmeeD"><span class="icon-Slider"></span></span>Filters</button></div></div><div class="rightArrow"><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="24px" width="24px" viewBox="0 0 24 24" class="sc-AxhCb loZKFC"><path d="M9 6L15 12L9 18" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div></div></div><div class="tableWrapper___3utdq cmc-table-homepage-wrapper___22rL4"><table class="cmc-table cmc-table___11lFC cmc-table-homepage___2_guh "><colgroup><col style="width:50px;min-width:auto" /><col style="width:50px;min-width:auto" /><col style="width:250px;min-width:auto" /><col /><col style="width:84px;min-width:auto" /><col style="width:84px;min-width:auto" /><col style="width:200px;min-width:auto" /><col style="width:200px;min-width:auto" /><col style="width:200px;min-width:auto" /><col /><col style="width:50px;min-width:auto" /></colgroup><thead><tr><th class="stickyTop"></th><th class="stickyTop" style="text-align:left"><div class="sc-9dqrx-0 gwBIGi"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP rank-column-title" font-size="0" color="text">#</p><span class="icon-Caret-up" style="margin-left:4px"></span></div></div></th><th class="stickyTop" style="text-align:left"><div class="sc-9dqrx-0 gwBIGi"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" font-size="0" color="text">Name</p></div></div></th><th class="stickyTop"><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" font-size="0" style="white-space:nowrap" color="text">Price</p></div></div></th><th class="stickyTop" style="text-align:right"><div><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" font-size="0" style="white-space:nowrap" color="text">24h %</p></div></div></div></th><th class="stickyTop" style="text-align:right"><div><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" font-size="0" style="white-space:nowrap" color="text">7d %</p></div></div></div></th><th class="stickyTop" style="text-align:right"><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" font-size="0" style="white-space:nowrap" color="text">Market Cap</p></div><div class="rqf1px-2 dZrwAR"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="16" width="16" viewBox="0 0 24 24" color="neutral4" class="sc-AxhCb bpYSuY"><path d="M12 2C6.48583 2 2 6.48583 2 12C2 17.5142 6.48583 22 12 22C17.5142 22 22 17.5142 22 12C22 6.48583 17.5142 2 12 2ZM14.215 17.2367C13.6642 17.4533 11.755 18.365 10.655 17.3958C10.3267 17.1075 10.1633 16.7417 10.1633 16.2975C10.1633 15.4658 10.4367 14.7408 10.9292 13C11.0158 12.6708 11.1217 12.2442 11.1217 11.9058C11.1217 11.3217 10.9 11.1667 10.2992 11.1667C10.0058 11.1667 9.68083 11.2708 9.38667 11.3808L9.54917 10.715C10.205 10.4483 11.0283 10.1233 11.7333 10.1233C12.7908 10.1233 13.5692 10.6508 13.5692 11.6542C13.5692 11.9433 13.5192 12.45 13.4142 12.8L12.8058 14.9517C12.68 15.3867 12.4525 16.3458 12.805 16.63C13.1517 16.9108 13.9725 16.7617 14.3775 16.5708L14.215 17.2367ZM13.21 8.66667C12.52 8.66667 11.96 8.10667 11.96 7.41667C11.96 6.72667 12.52 6.16667 13.21 6.16667C13.9 6.16667 14.46 6.72667 14.46 7.41667C14.46 8.10667 13.9 8.66667 13.21 8.66667Z"></path></svg></div></div></th><th class="stickyTop" style="text-align:right"><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" font-size="0" style="white-space:nowrap" color="text">Volume(24h)</p></div><div class="rqf1px-2 dZrwAR"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="16" width="16" viewBox="0 0 24 24" color="neutral4" class="sc-AxhCb bpYSuY"><path d="M12 2C6.48583 2 2 6.48583 2 12C2 17.5142 6.48583 22 12 22C17.5142 22 22 17.5142 22 12C22 6.48583 17.5142 2 12 2ZM14.215 17.2367C13.6642 17.4533 11.755 18.365 10.655 17.3958C10.3267 17.1075 10.1633 16.7417 10.1633 16.2975C10.1633 15.4658 10.4367 14.7408 10.9292 13C11.0158 12.6708 11.1217 12.2442 11.1217 11.9058C11.1217 11.3217 10.9 11.1667 10.2992 11.1667C10.0058 11.1667 9.68083 11.2708 9.38667 11.3808L9.54917 10.715C10.205 10.4483 11.0283 10.1233 11.7333 10.1233C12.7908 10.1233 13.5692 10.6508 13.5692 11.6542C13.5692 11.9433 13.5192 12.45 13.4142 12.8L12.8058 14.9517C12.68 15.3867 12.4525 16.3458 12.805 16.63C13.1517 16.9108 13.9725 16.7617 14.3775 16.5708L14.215 17.2367ZM13.21 8.66667C12.52 8.66667 11.96 8.10667 11.96 7.41667C11.96 6.72667 12.52 6.16667 13.21 6.16667C13.9 6.16667 14.46 6.72667 14.46 7.41667C14.46 8.10667 13.9 8.66667 13.21 8.66667Z"></path></svg></div></div></th><th class="stickyTop" style="text-align:right"><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" font-size="0" style="white-space:nowrap" color="text">Circulating Supply</p></div><div class="rqf1px-2 dZrwAR"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="16" width="16" viewBox="0 0 24 24" color="neutral4" class="sc-AxhCb bpYSuY"><path d="M12 2C6.48583 2 2 6.48583 2 12C2 17.5142 6.48583 22 12 22C17.5142 22 22 17.5142 22 12C22 6.48583 17.5142 2 12 2ZM14.215 17.2367C13.6642 17.4533 11.755 18.365 10.655 17.3958C10.3267 17.1075 10.1633 16.7417 10.1633 16.2975C10.1633 15.4658 10.4367 14.7408 10.9292 13C11.0158 12.6708 11.1217 12.2442 11.1217 11.9058C11.1217 11.3217 10.9 11.1667 10.2992 11.1667C10.0058 11.1667 9.68083 11.2708 9.38667 11.3808L9.54917 10.715C10.205 10.4483 11.0283 10.1233 11.7333 10.1233C12.7908 10.1233 13.5692 10.6508 13.5692 11.6542C13.5692 11.9433 13.5192 12.45 13.4142 12.8L12.8058 14.9517C12.68 15.3867 12.4525 16.3458 12.805 16.63C13.1517 16.9108 13.9725 16.7617 14.3775 16.5708L14.215 17.2367ZM13.21 8.66667C12.52 8.66667 11.96 8.10667 11.96 7.41667C11.96 6.72667 12.52 6.16667 13.21 6.16667C13.9 6.16667 14.46 6.72667 14.46 7.41667C14.46 8.10667 13.9 8.66667 13.21 8.66667Z"></path></svg></div></div></th><th class="stickyTop" style="text-align:right"><p style="font-size:12px" color="text" font-size="1" class="sc-AxhUy kVvvpJ">Last 7 Days</p></th><th class="stickyTop"></th></tr></thead><tbody><tr><td><span></span></td><td style="text-align:left"><p color="text2" font-size="0" class="sc-AxhUy cEPKAB">1</p></td><td style="text-align:left"><a href="/currencies/bitcoin/" class="cmc-link"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/1.png" /><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p font-weight="semibold" color="text" font-size="1" class="sc-AxhUy fqrLrs">Bitcoin</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">1</div><p color="text3" class="sc-AxhUy bzeXdk coin-item-symbol" font-size="1">BTC</p></div></div></div></a></td><td><div class="price___3rj7O "><a href="/currencies/bitcoin/markets/" class="cmc-link">$47,701.18</a></div></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>5.98<!-- -->%</span></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>0.30<!-- -->%</span></td><td style="text-align:right"><p style="white-space:nowrap" color="text" font-size="1" class="sc-AxhUy kVvvpJ">$889,382,738,131</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a href="/currencies/bitcoin/markets/" class="cmc-link"><p font-size="1" class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text">$51,383,310,634</p></a><p color="text2" font-size="0" style="white-space:nowrap" class="sc-AxhUy cEPKAB">1,077,192 BTC</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p font-size="1" font-weight="medium" color="text" class="sc-AxhUy ghbWav">18,644,881 BTC</p></div><div width="160" class="sc-fznzqM YdPrA"><div width="143" class="sc-fznOgF hTcCKn"></div></div></div></td><td style="text-align:right"><a href="/currencies/bitcoin/" class="cmc-link"><img src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/1.png" alt="1-price-graph" class="tableGraph___c_IY- graphDown___2-1G6" /></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p color="text2" font-size="0" class="sc-AxhUy cEPKAB">2</p></td><td style="text-align:left"><a href="/currencies/ethereum/" class="cmc-link"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/1027.png" /><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p font-weight="semibold" color="text" font-size="1" class="sc-AxhUy fqrLrs">Ethereum</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">2</div><p color="text3" class="sc-AxhUy bzeXdk coin-item-symbol" font-size="1">ETH</p></div></div></div></a></td><td><div class="price___3rj7O "><a href="/currencies/ethereum/markets/" class="cmc-link">$1,520.27</a></div></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>4.01<!-- -->%</span></td><td style="text-align:right"><span style="color:var(--up-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-up"></span>1.12<!-- -->%</span></td><td style="text-align:right"><p style="white-space:nowrap" color="text" font-size="1" class="sc-AxhUy kVvvpJ">$174,703,591,024</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a href="/currencies/ethereum/markets/" class="cmc-link"><p font-size="1" class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text">$22,561,119,696</p></a><p color="text2" font-size="0" style="white-space:nowrap" class="sc-AxhUy cEPKAB">14,840,222 ETH</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><p font-size="1" font-weight="medium" color="text" class="sc-AxhUy ghbWav">114,916,286 ETH</p></div></div></td><td style="text-align:right"><a href="/currencies/ethereum/" class="cmc-link"><img src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/1027.png" alt="1027-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" /></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p color="text2" font-size="0" class="sc-AxhUy cEPKAB">3</p></td><td style="text-align:left"><a href="/currencies/tether/" class="cmc-link"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/825.png" /><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p font-weight="semibold" color="text" font-size="1" class="sc-AxhUy fqrLrs">Tether</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">3</div><p color="text3" class="sc-AxhUy bzeXdk coin-item-symbol" font-size="1">USDT</p></div></div></div></a></td><td><div class="price___3rj7O "><a href="/currencies/tether/markets/" class="cmc-link">$1.00</a></div></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>0.04<!-- -->%</span></td><td style="text-align:right"><span style="color:var(--up-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-up"></span>0.01<!-- -->%</span></td><td style="text-align:right"><p style="white-space:nowrap" color="text" font-size="1" class="sc-AxhUy kVvvpJ">$36,264,314,151</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a href="/currencies/tether/markets/" class="cmc-link"><p font-size="1" class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text">$101,732,079,870</p></a><p color="text2" font-size="0" style="white-space:nowrap" class="sc-AxhUy cEPKAB">101,730,923,814 USDT</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><p font-size="1" font-weight="medium" color="text" class="sc-AxhUy ghbWav">36,263,902,054 USDT</p></div></div></td><td style="text-align:right"><a href="/currencies/tether/" class="cmc-link"><img src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/825.png" alt="825-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" /></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p color="text2" font-size="0" class="sc-AxhUy cEPKAB">4</p></td><td style="text-align:left"><a href="/currencies/cardano/" class="cmc-link"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/2010.png" /><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p font-weight="semibold" color="text" font-size="1" class="sc-AxhUy fqrLrs">Cardano</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">4</div><p color="text3" class="sc-AxhUy bzeXdk coin-item-symbol" font-size="1">ADA</p></div></div></div></a></td><td><div class="price___3rj7O "><a href="/currencies/cardano/markets/" class="cmc-link">$1.10</a></div></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>10.38<!-- -->%</span></td><td style="text-align:right"><span style="color:var(--up-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-up"></span>0.25<!-- -->%</span></td><td style="text-align:right"><p style="white-space:nowrap" color="text" font-size="1" class="sc-AxhUy kVvvpJ">$35,042,951,182</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a href="/currencies/cardano/markets/" class="cmc-link"><p font-size="1" class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text">$7,119,379,841</p></a><p color="text2" font-size="0" style="white-space:nowrap" class="sc-AxhUy cEPKAB">6,490,667,667 ADA</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p font-size="1" font-weight="medium" color="text" class="sc-AxhUy ghbWav">31,948,309,441 ADA</p></div><div width="160" class="sc-fznzqM YdPrA"><div width="114" class="sc-fznOgF hTcEKp"></div></div></div></td><td style="text-align:right"><a href="/currencies/cardano/" class="cmc-link"><img src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/2010.png" alt="2010-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" /></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p color="text2" font-size="0" class="sc-AxhUy cEPKAB">5</p></td><td style="text-align:left"><a href="/currencies/binance-coin/" class="cmc-link"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/1839.png" /><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p font-weight="semibold" color="text" font-size="1" class="sc-AxhUy fqrLrs">Binance Coin</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">5</div><p color="text3" class="sc-AxhUy bzeXdk coin-item-symbol" font-size="1">BNB</p></div></div></div></a></td><td><div class="price___3rj7O "><a href="/currencies/binance-coin/markets/" class="cmc-link">$226.77</a></div></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>6.72<!-- -->%</span></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>5.84<!-- -->%</span></td><td style="text-align:right"><p style="white-space:nowrap" color="text" font-size="1" class="sc-AxhUy kVvvpJ">$35,042,655,439</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a href="/currencies/binance-coin/markets/" class="cmc-link"><p font-size="1" class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text">$5,547,625,433</p></a><p color="text2" font-size="0" style="white-space:nowrap" class="sc-AxhUy cEPKAB">24,464,185 BNB</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p font-size="1" font-weight="medium" color="text" class="sc-AxhUy ghbWav">154,532,785 BNB</p></div><div width="160" class="sc-fznzqM YdPrA"><div width="145" class="sc-fznOgF hTcFaR"></div></div></div></td><td style="text-align:right"><a href="/currencies/binance-coin/" class="cmc-link"><img src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/1839.png" alt="1839-price-graph" class="tableGraph___c_IY- graphDown___2-1G6" /></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p color="text2" font-size="0" class="sc-AxhUy cEPKAB">6</p></td><td style="text-align:left"><a href="/currencies/polkadot-new/" class="cmc-link"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/6636.png" /><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p font-weight="semibold" color="text" font-size="1" class="sc-AxhUy fqrLrs">Polkadot</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">6</div><p color="text3" class="sc-AxhUy bzeXdk coin-item-symbol" font-size="1">DOT</p></div></div></div></a></td><td><div class="price___3rj7O "><a href="/currencies/polkadot-new/markets/" class="cmc-link">$34.91</a></div></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>6.27<!-- -->%</span></td><td style="text-align:right"><span style="color:var(--up-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-up"></span>9.29<!-- -->%</span></td><td style="text-align:right"><p style="white-space:nowrap" color="text" font-size="1" class="sc-AxhUy kVvvpJ">$31,952,463,687</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a href="/currencies/polkadot-new/markets/" class="cmc-link"><p font-size="1" class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text">$2,773,955,506</p></a><p color="text2" font-size="0" style="white-space:nowrap" class="sc-AxhUy cEPKAB">79,450,103 DOT</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><p font-size="1" font-weight="medium" color="text" class="sc-AxhUy ghbWav">915,164,829 DOT</p></div></div></td><td style="text-align:right"><a href="/currencies/polkadot-new/" class="cmc-link"><img src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/6636.png" alt="6636-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" /></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p color="text2" font-size="0" class="sc-AxhUy cEPKAB">7</p></td><td style="text-align:left"><a href="/currencies/xrp/" class="cmc-link"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/52.png" /><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p font-weight="semibold" color="text" font-size="1" class="sc-AxhUy fqrLrs">XRP</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">7</div><p color="text3" class="sc-AxhUy bzeXdk coin-item-symbol" font-size="1">XRP</p></div></div></div></a></td><td><div class="price___3rj7O "><a href="/currencies/xrp/markets/" class="cmc-link">$0.476</a></div></td><td style="text-align:right"><span style="color:var(--up-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-up"></span>5.67<!-- -->%</span></td><td style="text-align:right"><span style="color:var(--up-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-up"></span>6.16<!-- -->%</span></td><td style="text-align:right"><p style="white-space:nowrap" color="text" font-size="1" class="sc-AxhUy kVvvpJ">$21,612,248,478</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a href="/currencies/xrp/markets/" class="cmc-link"><p font-size="1" class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text">$5,999,849,408</p></a><p color="text2" font-size="0" style="white-space:nowrap" class="sc-AxhUy cEPKAB">12,604,765,979 XRP</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p font-size="1" font-weight="medium" color="text" class="sc-AxhUy ghbWav">45,404,028,640 XRP</p></div><div width="160" class="sc-fznzqM YdPrA"><div width="73" class="sc-fznOgF cGZXtd"></div></div></div></td><td style="text-align:right"><a href="/currencies/xrp/" class="cmc-link"><img src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/52.png" alt="52-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" /></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p color="text2" font-size="0" class="sc-AxhUy cEPKAB">8</p></td><td style="text-align:left"><a href="/currencies/litecoin/" class="cmc-link"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/2.png" /><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p font-weight="semibold" color="text" font-size="1" class="sc-AxhUy fqrLrs">Litecoin</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">8</div><p color="text3" class="sc-AxhUy bzeXdk coin-item-symbol" font-size="1">LTC</p></div></div></div></a></td><td><div class="price___3rj7O "><a href="/currencies/litecoin/markets/" class="cmc-link">$178.31</a></div></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>5.55<!-- -->%</span></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>3.32<!-- -->%</span></td><td style="text-align:right"><p style="white-space:nowrap" color="text" font-size="1" class="sc-AxhUy kVvvpJ">$11,874,669,010</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a href="/currencies/litecoin/markets/" class="cmc-link"><p font-size="1" class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text">$5,418,155,607</p></a><p color="text2" font-size="0" style="white-space:nowrap" class="sc-AxhUy cEPKAB">30,386,086 LTC</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p font-size="1" font-weight="medium" color="text" class="sc-AxhUy ghbWav">66,595,488 LTC</p></div><div width="160" class="sc-fznzqM YdPrA"><div width="127" class="sc-fznOgF hTcEoN"></div></div></div></td><td style="text-align:right"><a href="/currencies/litecoin/" class="cmc-link"><img src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/2.png" alt="2-price-graph" class="tableGraph___c_IY- graphDown___2-1G6" /></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p color="text2" font-size="0" class="sc-AxhUy cEPKAB">9</p></td><td style="text-align:left"><a href="/currencies/chainlink/" class="cmc-link"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/1975.png" /><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p font-weight="semibold" color="text" font-size="1" class="sc-AxhUy fqrLrs">Chainlink</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">9</div><p color="text3" class="sc-AxhUy bzeXdk coin-item-symbol" font-size="1">LINK</p></div></div></div></a></td><td><div class="price___3rj7O "><a href="/currencies/chainlink/markets/" class="cmc-link">$27.24</a></div></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>9.65<!-- -->%</span></td><td style="text-align:right"><span style="color:var(--up-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-up"></span>6.83<!-- -->%</span></td><td style="text-align:right"><p style="white-space:nowrap" color="text" font-size="1" class="sc-AxhUy kVvvpJ">$11,167,753,558</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a href="/currencies/chainlink/markets/" class="cmc-link"><p font-size="1" class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text">$1,887,333,365</p></a><p color="text2" font-size="0" style="white-space:nowrap" class="sc-AxhUy cEPKAB">69,290,991 LINK</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p font-size="1" font-weight="medium" color="text" class="sc-AxhUy ghbWav">410,009,556 LINK</p></div><div width="160" class="sc-fznzqM YdPrA"><div width="66" class="sc-fznOgF cGZXuR"></div></div></div></td><td style="text-align:right"><a href="/currencies/chainlink/" class="cmc-link"><img src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/1975.png" alt="1975-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" /></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p color="text2" font-size="0" class="sc-AxhUy cEPKAB">10</p></td><td style="text-align:left"><a href="/currencies/bitcoin-cash/" class="cmc-link"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/1831.png" /><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p font-weight="semibold" color="text" font-size="1" class="sc-AxhUy fqrLrs">Bitcoin Cash</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">10</div><p color="text3" class="sc-AxhUy bzeXdk coin-item-symbol" font-size="1">BCH</p></div></div></div></a></td><td><div class="price___3rj7O "><a href="/currencies/bitcoin-cash/markets/" class="cmc-link">$500.98</a></div></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>4.95<!-- -->%</span></td><td style="text-align:right"><span style="color:var(--down-color);padding:0;border-radius:8px" class="sc-1v2ivon-0 gClTFY"><span class="icon-Caret-down"></span>1.14<!-- -->%</span></td><td style="text-align:right"><p style="white-space:nowrap" color="text" font-size="1" class="sc-AxhUy kVvvpJ">$9,353,699,464</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a href="/currencies/bitcoin-cash/markets/" class="cmc-link"><p font-size="1" class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text">$3,657,231,373</p></a><p color="text2" font-size="0" style="white-space:nowrap" class="sc-AxhUy cEPKAB">7,300,150 BCH</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p font-size="1" font-weight="medium" color="text" class="sc-AxhUy ghbWav">18,670,794 BCH</p></div><div width="160" class="sc-fznzqM YdPrA"><div width="143" class="sc-fznOgF hTcCKn"></div></div></div></td><td style="text-align:right"><a href="/currencies/bitcoin-cash/" class="cmc-link"><img src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/1831.png" alt="1831-price-graph" class="tableGraph___c_IY- graphDown___2-1G6" /></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr class="sc-15ks4ej-1 fENxkl"><td colSpan="100%" class="sc-15ks4ej-0 fpuWWI"><div class="sc-oTbqq fsuEer cmc-native-ad-row"><div src="https://s2.coinmarketcap.com/static/cloud/img/header-banner/cryptocom.png?_=29bbdee" class="sc-paXsP eqYpxV"></div><div class="sc-pjSSY dAvxTh"><div class="sc-prOVx hQWxaP">Crypto.com DeFi Wallet - Best Place to Manage, Swap &amp; Farm DeFi Tokens</div><div class="sc-qQmou frETCJ">Securely Manage, Swap &amp; Farm DeFi Tokens, including UNI, COMP, YFI, CRO, AAVE.\nBoost your yields by up to 20x when you stake CRO!</div></div><div class="sc-qYiqT gdJhvk"><button class="sc-Axmtr iJxTJr">Get App Now</button><div class="s-area"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.9126 9.56098C13.6294 9.73737 13.2958 9.75922 13.0423 9.61834C12.7203 9.43922 12.5433 9.01971 12.5433 8.43629V6.69073C12.5433 5.8478 12.205 5.248 11.6394 5.08605C10.6808 4.81093 9.9599 5.96644 9.68897 6.40039L7.99842 9.10088V5.8002C7.97941 5.04078 7.72908 4.58654 7.25376 4.44956C6.93925 4.35902 6.46869 4.39532 6.01159 5.08449L2.22409 11.0763C1.71704 10.1279 1.45271 9.0719 1.45408 8C1.45408 4.39063 4.38996 1.45444 7.99842 1.45444C11.6069 1.45444 14.5424 4.39063 14.5424 8C14.5424 8.00624 14.544 8.01171 14.5444 8.01756C14.5444 8.0238 14.5432 8.02927 14.5436 8.03551C14.5776 8.73444 14.3479 9.29054 13.9126 9.56137V9.56098ZM15.9965 8.00039V8V7.98205L15.9961 7.9641C15.9759 3.56839 12.3963 0 7.99803 0C3.58826 0 0 3.58868 0 8C0 12.4109 3.58826 16 7.99842 16C10.0221 16 11.9535 15.2421 13.4361 13.8665C13.7308 13.5934 13.7482 13.1333 13.4749 12.839C13.3449 12.6978 13.1628 12.6141 12.9695 12.6068C12.7762 12.5995 12.588 12.6691 12.4474 12.8C11.2457 13.9212 9.65346 14.5459 7.99842 14.5456C6.06625 14.5456 4.32778 13.703 3.12878 12.3668L6.54434 6.96351V9.45444C6.54434 10.6509 7.01531 11.0377 7.41022 11.1508C7.80552 11.264 8.40957 11.1867 9.04373 10.1721L10.9224 7.17151C10.9826 7.07473 11.0381 6.99122 11.0888 6.91902V8.43629C11.0888 9.55473 11.5435 10.4492 12.3361 10.8898C13.0507 11.287 13.949 11.2511 14.681 10.7961C15.5683 10.2439 16.0464 9.22654 15.9965 8.00039Z" fill="currentColor"></path></svg><p font-size="11px" class="sc-AxhUy bduqLR s-text" color="text">Sponsored</p></div></div></div></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/stellar/" class="cmc-link"><span class="circle"></span><span>Stellar</span><span class="crypto-symbol">XLM</span></a></td><td><span>$<!-- -->0.41</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/usd-coin/" class="cmc-link"><span class="circle"></span><span>USD Coin</span><span class="crypto-symbol">USDC</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/uniswap/" class="cmc-link"><span class="circle"></span><span>Uniswap</span><span class="crypto-symbol">UNI</span></a></td><td><span>$<!-- -->27.46</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/dogecoin/" class="cmc-link"><span class="circle"></span><span>Dogecoin</span><span class="crypto-symbol">DOGE</span></a></td><td><span>$<!-- -->0.05</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/nem/" class="cmc-link"><span class="circle"></span><span>NEM</span><span class="crypto-symbol">XEM</span></a></td><td><span>$<!-- -->0.69</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/wrapped-bitcoin/" class="cmc-link"><span class="circle"></span><span>Wrapped Bitcoin</span><span class="crypto-symbol">WBTC</span></a></td><td><span>$<!-- -->47946.52</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/aave/" class="cmc-link"><span class="circle"></span><span>Aave</span><span class="crypto-symbol">AAVE</span></a></td><td><span>$<!-- -->368.62</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/theta/" class="cmc-link"><span class="circle"></span><span>THETA</span><span class="crypto-symbol">THETA</span></a></td><td><span>$<!-- -->4.38</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/cosmos/" class="cmc-link"><span class="circle"></span><span>Cosmos</span><span class="crypto-symbol">ATOM</span></a></td><td><span>$<!-- -->18.57</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/monero/" class="cmc-link"><span class="circle"></span><span>Monero</span><span class="crypto-symbol">XMR</span></a></td><td><span>$<!-- -->214.14</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/tron/" class="cmc-link"><span class="circle"></span><span>TRON</span><span class="crypto-symbol">TRX</span></a></td><td><span>$<!-- -->0.05</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/crypto-com-coin/" class="cmc-link"><span class="circle"></span><span>Crypto.com Coin</span><span class="crypto-symbol">CRO</span></a></td><td><span>$<!-- -->0.15</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/eos/" class="cmc-link"><span class="circle"></span><span>EOS</span><span class="crypto-symbol">EOS</span></a></td><td><span>$<!-- -->3.71</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/iota/" class="cmc-link"><span class="circle"></span><span>IOTA</span><span class="crypto-symbol">MIOTA</span></a></td><td><span>$<!-- -->1.23</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/solana/" class="cmc-link"><span class="circle"></span><span>Solana</span><span class="crypto-symbol">SOL</span></a></td><td><span>$<!-- -->12.90</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/bitcoin-sv/" class="cmc-link"><span class="circle"></span><span>Bitcoin SV</span><span class="crypto-symbol">BSV</span></a></td><td><span>$<!-- -->179.79</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/vechain/" class="cmc-link"><span class="circle"></span><span>VeChain</span><span class="crypto-symbol">VET</span></a></td><td><span>$<!-- -->0.05</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/terra-luna/" class="cmc-link"><span class="circle"></span><span>Terra</span><span class="crypto-symbol">LUNA</span></a></td><td><span>$<!-- -->7.31</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/binance-usd/" class="cmc-link"><span class="circle"></span><span>Binance USD</span><span class="crypto-symbol">BUSD</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/huobi-token/" class="cmc-link"><span class="circle"></span><span>Huobi Token</span><span class="crypto-symbol">HT</span></a></td><td><span>$<!-- -->15.48</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/tezos/" class="cmc-link"><span class="circle"></span><span>Tezos</span><span class="crypto-symbol">XTZ</span></a></td><td><span>$<!-- -->3.61</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/ftx-token/" class="cmc-link"><span class="circle"></span><span>FTX Token</span><span class="crypto-symbol">FTT</span></a></td><td><span>$<!-- -->29.05</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/neo/" class="cmc-link"><span class="circle"></span><span>Neo</span><span class="crypto-symbol">NEO</span></a></td><td><span>$<!-- -->37.32</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/multi-collateral-dai/" class="cmc-link"><span class="circle"></span><span>Dai</span><span class="crypto-symbol">DAI</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/elrond-egld/" class="cmc-link"><span class="circle"></span><span>Elrond</span><span class="crypto-symbol">EGLD</span></a></td><td><span>$<!-- -->146.61</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/synthetix-network-token/" class="cmc-link"><span class="circle"></span><span>Synthetix</span><span class="crypto-symbol">SNX</span></a></td><td><span>$<!-- -->21.18</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/algorand/" class="cmc-link"><span class="circle"></span><span>Algorand</span><span class="crypto-symbol">ALGO</span></a></td><td><span>$<!-- -->1.07</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/filecoin/" class="cmc-link"><span class="circle"></span><span>Filecoin</span><span class="crypto-symbol">FIL</span></a></td><td><span>$<!-- -->40.27</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/the-graph/" class="cmc-link"><span class="circle"></span><span>The Graph</span><span class="crypto-symbol">GRT</span></a></td><td><span>$<!-- -->1.81</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/compound/" class="cmc-link"><span class="circle"></span><span>Compound</span><span class="crypto-symbol">COMP</span></a></td><td><span>$<!-- -->466.32</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/sushiswap/" class="cmc-link"><span class="circle"></span><span>SushiSwap</span><span class="crypto-symbol">SUSHI</span></a></td><td><span>$<!-- -->16.98</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/maker/" class="cmc-link"><span class="circle"></span><span>Maker</span><span class="crypto-symbol">MKR</span></a></td><td><span>$<!-- -->2153.11</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/dash/" class="cmc-link"><span class="circle"></span><span>Dash</span><span class="crypto-symbol">DASH</span></a></td><td><span>$<!-- -->208.23</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/kusama/" class="cmc-link"><span class="circle"></span><span>Kusama</span><span class="crypto-symbol">KSM</span></a></td><td><span>$<!-- -->231.24</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/avalanche/" class="cmc-link"><span class="circle"></span><span>Avalanche</span><span class="crypto-symbol">AVAX</span></a></td><td><span>$<!-- -->24.84</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/unus-sed-leo/" class="cmc-link"><span class="circle"></span><span>UNUS SED LEO</span><span class="crypto-symbol">LEO</span></a></td><td><span>$<!-- -->1.90</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/decred/" class="cmc-link"><span class="circle"></span><span>Decred</span><span class="crypto-symbol">DCR</span></a></td><td><span>$<!-- -->141.04</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/pancakeswap/" class="cmc-link"><span class="circle"></span><span>PancakeSwap</span><span class="crypto-symbol">CAKE</span></a></td><td><span>$<!-- -->11.34</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/near-protocol/" class="cmc-link"><span class="circle"></span><span>NEAR Protocol</span><span class="crypto-symbol">NEAR</span></a></td><td><span>$<!-- -->4.46</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/zcash/" class="cmc-link"><span class="circle"></span><span>Zcash</span><span class="crypto-symbol">ZEC</span></a></td><td><span>$<!-- -->119.80</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/zilliqa/" class="cmc-link"><span class="circle"></span><span>Zilliqa</span><span class="crypto-symbol">ZIL</span></a></td><td><span>$<!-- -->0.12</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/ethereum-classic/" class="cmc-link"><span class="circle"></span><span>Ethereum Classic</span><span class="crypto-symbol">ETC</span></a></td><td><span>$<!-- -->10.88</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/voyager-token/" class="cmc-link"><span class="circle"></span><span>Voyager Token</span><span class="crypto-symbol">VGX</span></a></td><td><span>$<!-- -->5.61</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/nexo/" class="cmc-link"><span class="circle"></span><span>Nexo</span><span class="crypto-symbol">NEXO</span></a></td><td><span>$<!-- -->2.18</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/bitcoin-bep2/" class="cmc-link"><span class="circle"></span><span>Bitcoin BEP2</span><span class="crypto-symbol">BTCB</span></a></td><td><span>$<!-- -->48216.31</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/thorchain/" class="cmc-link"><span class="circle"></span><span>THORChain</span><span class="crypto-symbol">RUNE</span></a></td><td><span>$<!-- -->5.11</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/ravencoin/" class="cmc-link"><span class="circle"></span><span>Ravencoin</span><span class="crypto-symbol">RVN</span></a></td><td><span>$<!-- -->0.15</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/bittorrent/" class="cmc-link"><span class="circle"></span><span>BitTorrent</span><span class="crypto-symbol">BTT</span></a></td><td><span>$<!-- -->0.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/yearn-finance/" class="cmc-link"><span class="circle"></span><span>yearn.finance</span><span class="crypto-symbol">YFI</span></a></td><td><span>$<!-- -->31826.04</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/hedera-hashgraph/" class="cmc-link"><span class="circle"></span><span>Hedera Hashgraph</span><span class="crypto-symbol">HBAR</span></a></td><td><span>$<!-- -->0.15</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/uma/" class="cmc-link"><span class="circle"></span><span>UMA</span><span class="crypto-symbol">UMA</span></a></td><td><span>$<!-- -->20.64</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/fantom/" class="cmc-link"><span class="circle"></span><span>Fantom</span><span class="crypto-symbol">FTM</span></a></td><td><span>$<!-- -->0.44</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/icon/" class="cmc-link"><span class="circle"></span><span>ICON</span><span class="crypto-symbol">ICX</span></a></td><td><span>$<!-- -->1.89</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/celsius/" class="cmc-link"><span class="circle"></span><span>Celsius</span><span class="crypto-symbol">CEL</span></a></td><td><span>$<!-- -->4.50</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/enjin-coin/" class="cmc-link"><span class="circle"></span><span>Enjin Coin</span><span class="crypto-symbol">ENJ</span></a></td><td><span>$<!-- -->1.26</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/revain/" class="cmc-link"><span class="circle"></span><span>Revain</span><span class="crypto-symbol">REV</span></a></td><td><span>$<!-- -->0.01</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/0x/" class="cmc-link"><span class="circle"></span><span>0x</span><span class="crypto-symbol">ZRX</span></a></td><td><span>$<!-- -->1.35</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/okb/" class="cmc-link"><span class="circle"></span><span>OKB</span><span class="crypto-symbol">OKB</span></a></td><td><span>$<!-- -->17.06</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/ren/" class="cmc-link"><span class="circle"></span><span>Ren</span><span class="crypto-symbol">REN</span></a></td><td><span>$<!-- -->1.02</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/basic-attention-token/" class="cmc-link"><span class="circle"></span><span>Basic Attention Token</span><span class="crypto-symbol">BAT</span></a></td><td><span>$<!-- -->0.68</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/bancor/" class="cmc-link"><span class="circle"></span><span>Bancor</span><span class="crypto-symbol">BNT</span></a></td><td><span>$<!-- -->6.65</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/waves/" class="cmc-link"><span class="circle"></span><span>Waves</span><span class="crypto-symbol">WAVES</span></a></td><td><span>$<!-- -->9.32</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/polygon/" class="cmc-link"><span class="circle"></span><span>Polygon</span><span class="crypto-symbol">MATIC</span></a></td><td><span>$<!-- -->0.20</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/swissborg/" class="cmc-link"><span class="circle"></span><span>SwissBorg</span><span class="crypto-symbol">CHSB</span></a></td><td><span>$<!-- -->1.01</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/flow/" class="cmc-link"><span class="circle"></span><span>Flow</span><span class="crypto-symbol">FLOW</span></a></td><td><span>$<!-- -->38.16</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/stacks/" class="cmc-link"><span class="circle"></span><span>Stacks</span><span class="crypto-symbol">STX</span></a></td><td><span>$<!-- -->1.18</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/renbtc/" class="cmc-link"><span class="circle"></span><span>renBTC</span><span class="crypto-symbol">RENBTC</span></a></td><td><span>$<!-- -->47927.24</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/digibyte/" class="cmc-link"><span class="circle"></span><span>DigiByte</span><span class="crypto-symbol">DGB</span></a></td><td><span>$<!-- -->0.06</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/ontology/" class="cmc-link"><span class="circle"></span><span>Ontology</span><span class="crypto-symbol">ONT</span></a></td><td><span>$<!-- -->0.95</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/husd/" class="cmc-link"><span class="circle"></span><span>HUSD</span><span class="crypto-symbol">HUSD</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/terrausd/" class="cmc-link"><span class="circle"></span><span>TerraUSD</span><span class="crypto-symbol">UST</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/theta-fuel/" class="cmc-link"><span class="circle"></span><span>Theta Fuel</span><span class="crypto-symbol">TFUEL</span></a></td><td><span>$<!-- -->0.14</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/iostoken/" class="cmc-link"><span class="circle"></span><span>IOST</span><span class="crypto-symbol">IOST</span></a></td><td><span>$<!-- -->0.04</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/zkswap/" class="cmc-link"><span class="circle"></span><span>ZKSwap</span><span class="crypto-symbol">ZKS</span></a></td><td><span>$<!-- -->3.64</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/celo/" class="cmc-link"><span class="circle"></span><span>Celo</span><span class="crypto-symbol">CELO</span></a></td><td><span>$<!-- -->3.77</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/paxos-standard/" class="cmc-link"><span class="circle"></span><span>Paxos Standard</span><span class="crypto-symbol">PAX</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/nano/" class="cmc-link"><span class="circle"></span><span>Nano</span><span class="crypto-symbol">NANO</span></a></td><td><span>$<!-- -->5.05</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/loopring/" class="cmc-link"><span class="circle"></span><span>Loopring</span><span class="crypto-symbol">LRC</span></a></td><td><span>$<!-- -->0.53</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/omg/" class="cmc-link"><span class="circle"></span><span>OMG Network</span><span class="crypto-symbol">OMG</span></a></td><td><span>$<!-- -->4.59</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/decentraland/" class="cmc-link"><span class="circle"></span><span>Decentraland</span><span class="crypto-symbol">MANA</span></a></td><td><span>$<!-- -->0.40</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/chiliz/" class="cmc-link"><span class="circle"></span><span>Chiliz</span><span class="crypto-symbol">CHZ</span></a></td><td><span>$<!-- -->0.11</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/qtum/" class="cmc-link"><span class="circle"></span><span>Qtum</span><span class="crypto-symbol">QTUM</span></a></td><td><span>$<!-- -->5.59</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/1inch/" class="cmc-link"><span class="circle"></span><span>1inch</span><span class="crypto-symbol">1INCH</span></a></td><td><span>$<!-- -->3.75</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/reserve-rights/" class="cmc-link"><span class="circle"></span><span>Reserve Rights</span><span class="crypto-symbol">RSR</span></a></td><td><span>$<!-- -->0.06</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/energy-web-token/" class="cmc-link"><span class="circle"></span><span>Energy Web Token</span><span class="crypto-symbol">EWT</span></a></td><td><span>$<!-- -->16.16</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/curve-dao-token/" class="cmc-link"><span class="circle"></span><span>Curve DAO Token</span><span class="crypto-symbol">CRV</span></a></td><td><span>$<!-- -->2.03</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/bitcoin-gold/" class="cmc-link"><span class="circle"></span><span>Bitcoin Gold</span><span class="crypto-symbol">BTG</span></a></td><td><span>$<!-- -->27.47</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/siacoin/" class="cmc-link"><span class="circle"></span><span>Siacoin</span><span class="crypto-symbol">SC</span></a></td><td><span>$<!-- -->0.01</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/arweave/" class="cmc-link"><span class="circle"></span><span>Arweave</span><span class="crypto-symbol">AR</span></a></td><td><span>$<!-- -->14.33</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a href="/currencies/horizen/" class="cmc-link"><span class="circle"></span><span>Horizen</span><span class="crypto-symbol">ZEN</span></a></td><td><span>$<!-- -->43.48</span></td><td><span></span></td></tr></tbody></table></div><div class="sc-8ccaqg-2 jbqscO"><div class="sc-1pue38x-0 mvtIA"><ul class="pagination"><li class="previous disabled"><a class="chevron" tabindex="0" role="button" aria-disabled="true" aria-label="Previous page"><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="14" width="14" viewBox="0 0 24 24" class="sc-AxhCb dqoXIW"><path d="M15 6L9 12L15 18" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></a></li><li class="page active"><a role="button" tabindex="0" aria-label="Page 1 is your current page" aria-current="page">1</a></li><li class="page"><a role="button" href="/?page=2" tabindex="0" aria-label="Page 2">2</a></li><li class="page"><a role="button" href="/?page=3" tabindex="0" aria-label="Page 3">3</a></li><li class="page"><a role="button" href="/?page=4" tabindex="0" aria-label="Page 4">4</a></li><li class="break"><a role="button" tabindex="0">...</a></li><li class="page"><a role="button" href="/?page=43" tabindex="0" aria-label="Page 43">43</a></li><li class="next"><a class="chevron" href="/?page=2" tabindex="0" role="button" aria-disabled="false" aria-label="Next page"><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="14" width="14" viewBox="0 0 24 24" class="sc-AxhCb dqoXIW"><path d="M9 6L15 12L9 18" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></a></li></ul></div></div><div class="sc-AxhCb sc-8ccaqg-0 kqmqqA"><p color="text" font-size="1" class="sc-AxhUy kVvvpJ">Showing 1 - 100 out of 4245</p><div class="sc-8ccaqg-3 locCiP"><div class="sc-1pue38x-0 mvtIA"><ul class="pagination"><li class="previous disabled"><a class="chevron" tabindex="0" role="button" aria-disabled="true" aria-label="Previous page"><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="14" width="14" viewBox="0 0 24 24" class="sc-AxhCb dqoXIW"><path d="M15 6L9 12L15 18" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></a></li><li class="page active"><a role="button" tabindex="0" aria-label="Page 1 is your current page" aria-current="page">1</a></li><li class="page"><a role="button" href="/?page=2" tabindex="0" aria-label="Page 2">2</a></li><li class="page"><a role="button" href="/?page=3" tabindex="0" aria-label="Page 3">3</a></li><li class="page"><a role="button" href="/?page=4" tabindex="0" aria-label="Page 4">4</a></li><li class="page"><a role="button" href="/?page=5" tabindex="0" aria-label="Page 5">5</a></li><li class="page"><a role="button" href="/?page=6" tabindex="0" aria-label="Page 6">6</a></li><li class="break"><a role="button" tabindex="0">...</a></li><li class="page"><a role="button" href="/?page=43" tabindex="0" aria-label="Page 43">43</a></li><li class="next"><a class="chevron" href="/?page=2" tabindex="0" role="button" aria-disabled="false" aria-label="Next page"><svg xmlns="http://www.w3.org/2000/svg" fill="none" height="14" width="14" viewBox="0 0 24 24" class="sc-AxhCb dqoXIW"><path d="M9 6L15 12L9 18" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></a></li></ul></div></div><div class="sc-AxhCb sc-8ccaqg-1 kCmxUQ"><p color="text2" font-size="1" class="sc-AxhUy loaKBT">Show rows</p><div class="sc-AxhCb sc-fzpdbB jPpwSF">100<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="14" width="14" viewBox="0 0 24 24" class="sc-AxhCb dqoXIW"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></svg></div></div></div><div class="sc-1u9taii-0 bNiDlV"><div class="seo-text__title"><div>Find out how we work by clicking here. </div><span id="drop-anchor">Read More</span></div><div class="seo-text__content" style="display:none"><div class="seo-text-translations"><h2>Today\xe2\x80\x99s Cryptocurrency Prices, Charts and Data</h2> <p> Welcome to CoinMarketCap.com! This site was founded in May 2013 by Brandon Chez to provide up-to-date cryptocurrency prices, charts and data about the emerging cryptocurrency markets. Since then, the world of blockchain and cryptocurrency has grown exponentially and we are very proud to have grown with it. We take our data very seriously and we do not change our data to fit any narrative: we stand for accurately, timely and unbiased information. </p> <h2>All Your Crypto Market Data Needs in One Place</h2> <p> Here at CoinMarketCap, we work very hard to ensure that all the relevant and up-to-date information about cryptocurrencies, coins and tokens can be located in one easily discoverable place. From the very first day, the goal was for the site to be the number one location online for crypto market data, and we work hard to empower our users with our unbiased and accurate information. </p> <h3>We Provide Live and Historic Crypto Charts for Free</h3> <p> Each of our coin data pages has a graph that shows both the current and historic price information for the coin or token. Normally, the graph starts at the launch of the asset, but it is possible to select specific to and from dates to customize the chart to your own needs. These charts and their information are free to visitors of our website. </p> <h3>How Do We Calculate Our Cryptocurrency Prices?</h3> <p> We receive updated cryptocurrency prices directly from many exchanges based on their pairs. We then convert the number to USD. A full explanation can be found <a target=\xe2\x80\x98_blanket\xe2\x80\x99 href=\'https://support.coinmarketcap.com/hc/en-us/articles/360043395752-Price-Market-Pair-Cryptoasset-\'> here</a>. </p> <p> Related Links <br /> New to crypto? <a href=\'https://coinmarketcap.com/how-to-buy-bitcoin/\' target=\xe2\x80\x98_blanket\xe2\x80\x99> Learn how to buy bitcoin today</a>. <br /> Ready to learn more? Visit our <a href=\'https://coinmarketcap.com/alexandria/glossary\' target=\xe2\x80\x98_blank\xe2\x80\x99> crypto glossary </a> and <a href=\'https://coinmarketcap.com/alexandria/\' target=\'_blank\'>Learning hub</a>. <br /> Want to look up a transaction? <a target=\'_blank\' href=\'https://blockchain.coinmarketcap.com/\'> Visit our blockchain explorer.</a> </p> <h3> How Do We Calculate Our Crypto Valuations?</h3> <p> We calculate our valuations based on the total circulating supply of an asset multiplied by the currency reference price. The topic is explained in more detail <a target=\'_blank\' href=\'https://support.coinmarketcap.com/hc/en-us/articles/360043836811-Market-Capitalization-Cryptoasset-Aggregate-\'> here</a>. </p> <h3>How Do We Calculate the Cryptocurrency Market Cap?</h3> <p> We calculate the total cryptocurrency market capitalization as the sum of all cryptocurrencies listed on the site. </p> <h2>Does CoinMarketCap.com List All Cryptocurrencies?</h2> <p> No, we do not list all cryptocurrencies at CoinMarketCap. As a company and team, we are very aware that not all coins and projects have good intentions. While we cannot guarantee to exclude them all, we have a vetting process that each coin goes through before it is listed on the site. If we suspect that a coin or project is a scam, it does not get listed. </p> <h3>How Big Is the Global Coin Market?</h3> <p> At the time of writing, we estimate that there are around 8,000 coins, tokens and projects in the global coin market. As mentioned above, we have a <a href=\'https://support.coinmarketcap.com/hc/en-us/articles/360043659351-Listings-Criteria\' target=\'_blank\'>due diligence process</a> that we apply to new coins before they are listed. This process controls how many of the cryptocurrencies from the global market are represented on our site. </p> <h3> What Is an Altcoin?</h3> <p> The very first cryptocurrency was <a href=\'https://coinmarketcap.com/currencies/bitcoin/\' target=\'_blank\'> Bitcoin</a>. Since it is open source, it is possible for other people to use the majority of the code, make a few changes and then launch their own separate currency. Many people have done exactly this. Some of these coins are very similar to Bitcoin, with just one or two amended features (such as <a href=\'https://coinmarketcap.com/currencies/litecoin/\' target=\'_blank\'>Litecoin</a>), while others are very different, with varying models of security, issuance and governance. However, they all share the same moniker \xe2\x80\x94 every coin issued after Bitcoin is considered to be an altcoin. </p> <h3> What Is an ICO?</h3> <p> ICO stands for initial coin offering. Many of the smaller projects in the crypto space \xe2\x80\x94 and a few of the largest ones \xe2\x80\x94 raised money from private investors around the world in the crypto equivalent of a crowdfunding campaign. Investors would send funds \xe2\x80\x94 usually in the form of Bitcoin \xe2\x80\x94 to the project and receive coin or tokens in return.<br /> Most ICOs happened in 2017 and early 2018 and used <a href=\'https://coinmarketcap.com/currencies/ethereum/\' target=\'_blank\'>Ethereum</a> as a platform of operation via the ERC-20 standard. In 2018, the United States Securities and Exchange Commission (SEC) clarified their rules relating to fundraising for assets, which made it much harder for new cryptocurrency projects to issue their own tokens in this way. Since the appearance of the SEC guidance and the organization\xe2\x80\x99s heightened interest in regulating ICOs for U.S. citizens, the number of ICOs has been reduced substantially. </p> <h3> What Is a Stablecoin?</h3> <p> Price volatility has long been one of the features of the cryptocurrency market. When asset prices move quickly in either direction and the market itself is relatively thin, it can sometimes be difficult to conduct transactions as might be needed. To overcome this problem, a new type of cryptocurrency tied in value to existing currencies \xe2\x80\x94 ranging from the U.S. dollar, other fiats or even other cryptocurrencies \xe2\x80\x94 arose. These new cryptocurrency are known as stablecoins, and they can be used for a multitude of purposes due to their stability. </p> <h2>Which Is the Best Cryptocurrency to Invest in? </h2> <p> CoinMarketCap does not offer financial or investment advice about which cryptocurrency, token or asset does or does not make a good investment, nor do we offer advice about the timing of purchases or sales. We are strictly a data company. <br /> Please remember that the prices, yields and values of financial assets change. This means that any capital you may invest is at risk. We recommend seeking the advice of a professional investment advisor for guidance related to your personal circumstances. </p> <h3>If You Are Investing in Cryptocurrency \xe2\x80\x94 CoinMarketCap.com Is for You</h3> <p> The data at CoinMarketCap updates throughout the day, which means that it is possible to check in on the value of your investments and assets at any time and from anywhere in the world. We look forward to seeing you regularly! </p></div><span></span></div></div></div></div></div><footer class="i8b499-0 fPKtoJ"><div class="i8b499-1 leywDA"><div class="i8b499-2 kFXOmn"><div class="sc-7i7lua-0 lohPt cmc-logo"></div></div><div class="i8b499-3 jrTZTi"><div class="footer-row"><div class="i8b499-6 gRuTnc"><span>Products</span><ul><li><a target="_blank" href="https://blockchain.coinmarketcap.com/?utm_source=coinmarketcap&amp;utm_content=footer" rel="noopener">Blockchain Explorer</a></li><li><a target="_blank" href="https://coinmarketcap.com/api/" rel="noopener">Crypto API</a></li><li><a target="_blank" href="https://coinmarketcap.com/indices/" rel="noopener">Crypto Indices</a></li><li><a target="_blank" href="https://interest.coinmarketcap.com?utm_source=coinmarketcap&amp;utm_content=footer" rel="noopener">Interest</a></li><li><a target="_blank" href="https://jobs.coinmarketcap.com/">Jobs Board</a></li><li><a target="_blank" rel="noopener" href="/sitemap/cryptocurrencies/" class="cmc-link">Sitemap</a></li></ul></div><div class="i8b499-6 gRuTnc"><span>Company</span><ul><li><a target="_blank" href="/about/" class="cmc-link">About us</a></li><li><a target="_blank" href="/terms/" class="cmc-link">Terms of use</a></li><li><a target="_blank" href="/privacy/" class="cmc-link">Privacy Policy</a></li><li><a target="_blank" href="/disclaimer/" class="cmc-link">Disclaimer</a></li><li><a target="_blank" href="/methodology/" class="cmc-link">Methodology</a></li><li><a target="_blank" href="https://jobs.coinmarketcap.com/employers/293118-coinmarketcap?utm_source=coinmarketcap&amp;utm_content=footer" rel="noopener">Careers</a><span class="tips">We\xe2\x80\x99re hiring!</span></li></ul></div></div><div class="footer-row"><div class="i8b499-6 gRuTnc"><span>Support</span><ul><li><a target="_blank" href="/request/" rel="noopener">Request Form</a></li><li><a target="_blank" href="/request">Contact Support</a></li><li><a target="_blank" href="/faq/" class="cmc-link">FAQ</a></li><li><a target="_blank" href="https://coinmarketcap.com/alexandria/glossary" rel="noopener">Glossary</a></li></ul></div><div class="i8b499-6 gRuTnc"><span>Socials</span><ul><li><a target="_blank" href="https://www.facebook.com/CoinMarketCap" rel="noopener">Facebook</a></li><li><a target="_blank" href="https://twitter.com/CoinMarketCap" rel="noopener">Twitter</a></li><li><a target="_blank" href="https://t.me/CoinMarketCap" rel="noopener">Telegram</a></li><li><a target="_blank" href="https://www.instagram.com/coinmarketcap/" rel="noopener">Instagram</a></li><li><a target="_blank" href="https://t.me/CoinMarketCapBot" rel="noopener">Interactive Chat</a></li></ul></div></div></div><div class="footer-meta"><div class="i8b499-4 dzUHFA">\xc2\xa9 <!-- -->2021<!-- --> CoinMarketCap. All rights reserved</div><div class="i8b499-5 hSxkho"><a target="_blank" href="https://itunes.apple.com/app/coinmarketcap/id1282107098?ls=1&amp;mt=8" class="cmc-app-store-badge cmc-link"><div class="sc-17dy621-0 gOBYxd cmc-app-store-badge cmc-app-store-badge--ios"></div></a><a target="_blank" href="https://play.google.com/store/apps/details?id=com.coinmarketcap.android&amp;hl=en_US" class="cmc-app-store-badge cmc-link"><div class="sc-17dy621-0 gOBYxd cmc-app-store-badge cmc-app-store-badge--android"></div></a></div></div></div></footer><div class="sc-1ojz83d-2 hOKkUo"><div style="text-align:right" class="sc-AxhCb bzAUaH"></div></div></div><span></span></div><script id="__NEXT_DATA__" type="application/json">{"props":{"isServer":true,"initialState":{"app":{"locale":"en-US","theme":"DAY","lang":"en","currency":{"global":"usd","table":"","isUnconverted":false},"bottomBannerHeights":{},"browser":{},"window":{"width":0,"height":0,"isNarrowLayout":false},"modal":{"instance":0,"data":{}},"message":""},"calendarEvent":{"listingLatest":{"data":[]},"calendarEventsById":{},"current":{}},"converter":{"isConverting":false,"values":{"from":"","to":"","amount":"","fromLabel":"","toLabel":""},"options":[],"conversions":{},"errors":{}},"cryptocurrency":{"listingLatest":{"page":1,"sort":"rank","sortDirection":"asc","data":[{"id":1,"name":"Bitcoin","symbol":"BTC","slug":"bitcoin","tags":["mineable","pow","sha-256","store-of-value","state-channels","coinbase-ventures-portfolio","three-arrows-capital-portfolio","polychain-capital-portfolio"],"cmcRank":1,"marketPairCount":9800,"circulatingSupply":18644881,"totalSupply":18644881,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:10:02.000Z","dateAdded":"2013-04-28T00:00:00.000Z","quotes":[{"name":"btc","price":1,"volume24h":1077191.70957372,"volume7d":157755232.29966283,"volume30d":675398080.8486696,"marketCap":18644881,"percentChange1h":0,"percentChange24h":0,"percentChange7d":0,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":31.37681292,"volume24h":33798842.75129959,"volume7d":4949856411.168495,"volume30d":21191839229.961506,"marketCap":585016943.0704893,"percentChange1h":-0.955722,"percentChange24h":-2.053258,"percentChange7d":-1.404346,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":47701.175359127046,"volume24h":51383310633.77399,"volume7d":7525109999746.039,"volume30d":32217282291780.254,"marketCap":889382738131.056,"percentChange1h":-0.83902094,"percentChange24h":-5.98127235,"percentChange7d":-0.29810243,"lastUpdated":"2021-03-05T00:10:02.000Z"}],"rank":1,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":1,"volume24h":1077191.70957372,"volume7d":157755232.29966283,"volume30d":675398080.8486696,"marketCap":18644881,"percentChange1h":0,"percentChange24h":0,"percentChange7d":0,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":31.37681292,"volume24h":33798842.75129959,"volume7d":4949856411.168495,"volume30d":21191839229.961506,"marketCap":585016943.0704893,"percentChange1h":-0.955722,"percentChange24h":-2.053258,"percentChange7d":-1.404346,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":47701.175359127046,"volume24h":51383310633.77399,"volume7d":7525109999746.039,"volume30d":32217282291780.254,"marketCap":889382738131.056,"percentChange1h":-0.83902094,"percentChange24h":-5.98127235,"percentChange7d":-0.29810243,"lastUpdated":"2021-03-05T00:10:02.000Z"}}},{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","tags":["mineable","pow","smart-contracts","coinbase-ventures-portfolio","three-arrows-capital-portfolio","polychain-capital-portfolio"],"cmcRank":2,"marketPairCount":6115,"circulatingSupply":114916285.624,"totalSupply":114916285.624,"lastUpdated":"2021-03-05T00:10:02.000Z","dateAdded":"2015-08-07T00:00:00.000Z","quotes":[{"name":"btc","price":0.03187067,"volume24h":472967.79431489,"volume7d":2007092.28692298,"volume30d":87456011.42652221,"marketCap":3662458.83268944,"percentChange1h":0.964944,"percentChange24h":2.0963,"percentChange7d":1.424349,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":1,"volume24h":14840221.99985566,"volume7d":62976159.20187619,"volume30d":2744090909.3429885,"marketCap":114916285.624,"percentChange1h":0,"percentChange24h":0,"percentChange7d":0,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1520.2683420809801,"volume24h":22561119695.834255,"volume7d":95740661140.46419,"volume30d":4171754537266.3545,"marketCap":174703591023.70285,"percentChange1h":0.11782683,"percentChange24h":-4.01035725,"percentChange7d":1.12200055,"lastUpdated":"2021-03-05T00:10:02.000Z"}],"rank":2,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.03187067,"volume24h":472967.79431489,"volume7d":2007092.28692298,"volume30d":87456011.42652221,"marketCap":3662458.83268944,"percentChange1h":0.964944,"percentChange24h":2.0963,"percentChange7d":1.424349,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":1,"volume24h":14840221.99985566,"volume7d":62976159.20187619,"volume30d":2744090909.3429885,"marketCap":114916285.624,"percentChange1h":0,"percentChange24h":0,"percentChange7d":0,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1520.2683420809801,"volume24h":22561119695.834255,"volume7d":95740661140.46419,"volume30d":4171754537266.3545,"marketCap":174703591023.70285,"percentChange1h":0.11782683,"percentChange24h":-4.01035725,"percentChange7d":1.12200055,"lastUpdated":"2021-03-05T00:10:02.000Z"}}},{"id":825,"name":"Tether","symbol":"USDT","slug":"tether","tags":["store-of-value","payments","stablecoin","stablecoin-asset-backed"],"cmcRank":3,"marketPairCount":11083,"circulatingSupply":36263902053.51945,"totalSupply":37608167440.84519,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2015-02-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002096,"volume24h":2132695.45464964,"volume7d":14502914.20118372,"volume30d":108419481.71336955,"marketCap":760239.42551255,"percentChange1h":0.869731,"percentChange24h":6.314882,"percentChange7d":0.305743,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00065779,"volume24h":66917186.29791509,"volume7d":455055225.6992195,"volume30d":3401857794.70742,"marketCap":23853890.22944233,"percentChange1h":-0.094303,"percentChange24h":4.131963,"percentChange7d":-1.102896,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.00001136385643,"volume24h":101732079869.85545,"volume7d":691806053529.0387,"volume30d":5171736709555.108,"marketCap":36264314151.295975,"percentChange1h":0.02341322,"percentChange24h":-0.04409976,"percentChange7d":0.00673004,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xdac17f958d2ee523a2206206994597c13d831ec7"},"rank":3,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00002096,"volume24h":2132695.45464964,"volume7d":14502914.20118372,"volume30d":108419481.71336955,"marketCap":760239.42551255,"percentChange1h":0.869731,"percentChange24h":6.314882,"percentChange7d":0.305743,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00065779,"volume24h":66917186.29791509,"volume7d":455055225.6992195,"volume30d":3401857794.70742,"marketCap":23853890.22944233,"percentChange1h":-0.094303,"percentChange24h":4.131963,"percentChange7d":-1.102896,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.00001136385643,"volume24h":101732079869.85545,"volume7d":691806053529.0387,"volume30d":5171736709555.108,"marketCap":36264314151.295975,"percentChange1h":0.02341322,"percentChange24h":-0.04409976,"percentChange7d":0.00673004,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":2010,"name":"Cardano","symbol":"ADA","slug":"cardano","tags":["mineable","dpos","pos","platform","research","smart-contracts","staking","binance-chain"],"cmcRank":4,"marketPairCount":238,"circulatingSupply":31948309440.747814,"totalSupply":45000000000,"maxSupply":45000000000,"lastUpdated":"2021-03-05T00:10:12.000Z","dateAdded":"2017-10-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002299,"volume24h":149249.56853711,"volume7d":814381.81457683,"volume30d":7404711.07302538,"marketCap":734634.96272058,"percentChange1h":1.089767,"percentChange24h":-4.674518,"percentChange7d":0.554202,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00072149,"volume24h":4682975.7905222,"volume7d":25552705.84220609,"volume30d":232336234.0720497,"marketCap":23050503.79047712,"percentChange1h":0.12363,"percentChange24h":-6.631796,"percentChange7d":-0.857927,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.09686402176214,"volume24h":7119379841.062559,"volume7d":38846969746.413635,"volume30d":353213421378.0535,"marketCap":35042951181.67999,"percentChange1h":0.2416025,"percentChange24h":-10.37619431,"percentChange7d":0.25444761,"lastUpdated":"2021-03-05T00:10:12.000Z"}],"rank":4,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00002299,"volume24h":149249.56853711,"volume7d":814381.81457683,"volume30d":7404711.07302538,"marketCap":734634.96272058,"percentChange1h":1.089767,"percentChange24h":-4.674518,"percentChange7d":0.554202,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00072149,"volume24h":4682975.7905222,"volume7d":25552705.84220609,"volume30d":232336234.0720497,"marketCap":23050503.79047712,"percentChange1h":0.12363,"percentChange24h":-6.631796,"percentChange7d":-0.857927,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.09686402176214,"volume24h":7119379841.062559,"volume7d":38846969746.413635,"volume30d":353213421378.0535,"marketCap":35042951181.67999,"percentChange1h":0.2416025,"percentChange24h":-10.37619431,"percentChange7d":0.25444761,"lastUpdated":"2021-03-05T00:10:12.000Z"}}},{"id":1839,"name":"Binance Coin","symbol":"BNB","slug":"binance-coin","tags":["marketplace","payments"],"cmcRank":5,"marketPairCount":477,"circulatingSupply":154532785,"totalSupply":170532785,"maxSupply":170532785,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2017-07-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00475387,"volume24h":116299.55427928,"volume7d":946316.16404403,"volume30d":2859307.03853288,"marketCap":734628.76280751,"percentChange1h":0.710552,"percentChange24h":-0.788859,"percentChange7d":-5.561568,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.14916129,"volume24h":3649109.35741157,"volume7d":29692385.24328647,"volume30d":89715942.03161915,"marketCap":23050309.25696482,"percentChange1h":-0.251961,"percentChange24h":-2.825919,"percentChange7d":-6.887811,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":226.7651840904814,"volume24h":5547625432.8642845,"volume7d":45140393286.240875,"volume30d":136392306450.64297,"marketCap":35042655438.53978,"percentChange1h":-0.13443144,"percentChange24h":-6.72294692,"percentChange7d":-5.8430906,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"rank":5,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00475387,"volume24h":116299.55427928,"volume7d":946316.16404403,"volume30d":2859307.03853288,"marketCap":734628.76280751,"percentChange1h":0.710552,"percentChange24h":-0.788859,"percentChange7d":-5.561568,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.14916129,"volume24h":3649109.35741157,"volume7d":29692385.24328647,"volume30d":89715942.03161915,"marketCap":23050309.25696482,"percentChange1h":-0.251961,"percentChange24h":-2.825919,"percentChange7d":-6.887811,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":226.7651840904814,"volume24h":5547625432.8642845,"volume7d":45140393286.240875,"volume30d":136392306450.64297,"marketCap":35042655438.53978,"percentChange1h":-0.13443144,"percentChange24h":-6.72294692,"percentChange7d":-5.8430906,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":6636,"name":"Polkadot","symbol":"DOT","slug":"polkadot-new","tags":["substrate","polkadot","binance-chain","dot-ecosystem","three-arrows-capital-portfolio","polychain-capital-portfolio"],"cmcRank":6,"marketPairCount":153,"circulatingSupply":915164828.9341136,"totalSupply":1050924478.239933,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2020-08-19T00:00:00.000Z","quotes":[{"name":"btc","price":0.00073194,"volume24h":58152.77056683,"volume7d":486160.30988131,"volume30d":2605411.51414325,"marketCap":669846.4649281,"percentChange1h":1.058392,"percentChange24h":-0.310226,"percentChange7d":9.61918,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.02296597,"volume24h":1824648.60291065,"volume7d":15254161.09274007,"volume30d":81749509.66137786,"marketCap":21017647.21581278,"percentChange1h":0.092555,"percentChange24h":-2.357115,"percentChange7d":8.079747,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":34.91443582293415,"volume24h":2773955506.427355,"volume7d":23190418194.296143,"volume30d":124281191518.83598,"marketCap":31952463687.22662,"percentChange1h":0.2104913,"percentChange24h":-6.27294264,"percentChange7d":9.29240275,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":6,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00073194,"volume24h":58152.77056683,"volume7d":486160.30988131,"volume30d":2605411.51414325,"marketCap":669846.4649281,"percentChange1h":1.058392,"percentChange24h":-0.310226,"percentChange7d":9.61918,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.02296597,"volume24h":1824648.60291065,"volume7d":15254161.09274007,"volume30d":81749509.66137786,"marketCap":21017647.21581278,"percentChange1h":0.092555,"percentChange24h":-2.357115,"percentChange7d":8.079747,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":34.91443582293415,"volume24h":2773955506.427355,"volume7d":23190418194.296143,"volume30d":124281191518.83598,"marketCap":31952463687.22662,"percentChange1h":0.2104913,"percentChange24h":-6.27294264,"percentChange7d":9.29240275,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":52,"name":"XRP","symbol":"XRP","slug":"xrp","tags":["medium-of-exchange","enterprise-solutions","binance-chain"],"cmcRank":7,"marketPairCount":674,"circulatingSupply":45404028640,"totalSupply":99990831162,"maxSupply":100000000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2013-08-04T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000998,"volume24h":125779.9071505,"volume7d":1553285.1362424,"volume30d":4565285.00309402,"marketCap":453075.80610541,"percentChange1h":1.980889,"percentChange24h":12.394222,"percentChange7d":6.477502,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0003131,"volume24h":3946572.61587645,"volume7d":48737137.13277948,"volume30d":143244093.47292766,"marketCap":14216074.80718076,"percentChange1h":1.006235,"percentChange24h":10.086479,"percentChange7d":4.982189,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.47599847690546,"volume24h":5999849407.640685,"volume7d":74093526666.62404,"volume30d":217769460496.98068,"marketCap":21612248478.011883,"percentChange1h":1.12524848,"percentChange24h":5.67161804,"percentChange7d":6.16008968,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":7,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00000998,"volume24h":125779.9071505,"volume7d":1553285.1362424,"volume30d":4565285.00309402,"marketCap":453075.80610541,"percentChange1h":1.980889,"percentChange24h":12.394222,"percentChange7d":6.477502,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0003131,"volume24h":3946572.61587645,"volume7d":48737137.13277948,"volume30d":143244093.47292766,"marketCap":14216074.80718076,"percentChange1h":1.006235,"percentChange24h":10.086479,"percentChange7d":4.982189,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.47599847690546,"volume24h":5999849407.640685,"volume7d":74093526666.62404,"volume30d":217769460496.98068,"marketCap":21612248478.011883,"percentChange1h":1.12524848,"percentChange24h":5.67161804,"percentChange7d":6.16008968,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":2,"name":"Litecoin","symbol":"LTC","slug":"litecoin","tags":["mineable","pow","scrypt","medium-of-exchange","binance-chain"],"cmcRank":8,"marketPairCount":757,"circulatingSupply":66595487.80105277,"totalSupply":66595487.80105277,"maxSupply":84000000,"lastUpdated":"2021-03-05T00:11:02.000Z","dateAdded":"2013-04-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00373807,"volume24h":113585.36904899,"volume7d":1114247.26984204,"volume30d":285068430.2045084,"marketCap":248938.70895912,"percentChange1h":0.095512,"percentChange24h":0.46149,"percentChange7d":-3.029373,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.11728878,"volume24h":3563946.87520801,"volume7d":34961528.13351966,"volume30d":8944538804.1975,"marketCap":7810903.29979457,"percentChange1h":-0.861122,"percentChange24h":-1.601244,"percentChange7d":-4.391176,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":178.31041414108893,"volume24h":5418155607.237168,"volume7d":53150904412.163475,"volume30d":13598099178536.326,"marketCap":11874669009.733555,"percentChange1h":-0.74431035,"percentChange24h":-5.5473854,"percentChange7d":-3.31844449,"lastUpdated":"2021-03-05T00:11:02.000Z"}],"rank":8,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00373807,"volume24h":113585.36904899,"volume7d":1114247.26984204,"volume30d":285068430.2045084,"marketCap":248938.70895912,"percentChange1h":0.095512,"percentChange24h":0.46149,"percentChange7d":-3.029373,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.11728878,"volume24h":3563946.87520801,"volume7d":34961528.13351966,"volume30d":8944538804.1975,"marketCap":7810903.29979457,"percentChange1h":-0.861122,"percentChange24h":-1.601244,"percentChange7d":-4.391176,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":178.31041414108893,"volume24h":5418155607.237168,"volume7d":53150904412.163475,"volume30d":13598099178536.326,"marketCap":11874669009.733555,"percentChange1h":-0.74431035,"percentChange24h":-5.5473854,"percentChange7d":-3.31844449,"lastUpdated":"2021-03-05T00:11:02.000Z"}}},{"id":1975,"name":"Chainlink","symbol":"LINK","slug":"chainlink","tags":["platform","defi","oracles","smart-contracts","substrate","polkadot","dot-ecosystem"],"cmcRank":9,"marketPairCount":479,"circulatingSupply":410009556.43444455,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-09-20T00:00:00.000Z","quotes":[{"name":"btc","price":0.00057101,"volume24h":39565.76228844,"volume7d":22286189.41343122,"volume30d":95283010.86698826,"marketCap":234119.04370085,"percentChange1h":-0.123457,"percentChange24h":-3.897723,"percentChange7d":7.151107,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01791643,"volume24h":1241447.52139955,"volume7d":699269595.9462243,"volume30d":2989677206.51892,"marketCap":7345909.43543484,"percentChange1h":-1.077999,"percentChange24h":-5.870951,"percentChange7d":5.646334,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":27.23778844474601,"volume24h":1887333365.1386366,"volume7d":1063077429296.8035,"volume30d":4545111610111.814,"marketCap":11167753558.48555,"percentChange1h":-0.96144247,"percentChange24h":-9.64586183,"percentChange7d":6.83168736,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x514910771af9ca656af840dff83e8264ecf986ca"},"rank":9,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00057101,"volume24h":39565.76228844,"volume7d":22286189.41343122,"volume30d":95283010.86698826,"marketCap":234119.04370085,"percentChange1h":-0.123457,"percentChange24h":-3.897723,"percentChange7d":7.151107,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01791643,"volume24h":1241447.52139955,"volume7d":699269595.9462243,"volume30d":2989677206.51892,"marketCap":7345909.43543484,"percentChange1h":-1.077999,"percentChange24h":-5.870951,"percentChange7d":5.646334,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":27.23778844474601,"volume24h":1887333365.1386366,"volume7d":1063077429296.8035,"volume30d":4545111610111.814,"marketCap":11167753558.48555,"percentChange1h":-0.96144247,"percentChange24h":-9.64586183,"percentChange7d":6.83168736,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":1831,"name":"Bitcoin Cash","symbol":"BCH","slug":"bitcoin-cash","tags":["mineable","marketplace","enterprise-solutions","binance-chain"],"cmcRank":10,"marketPairCount":587,"circulatingSupply":18670793.75,"totalSupply":18670793.75,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2017-07-23T00:00:00.000Z","quotes":[{"name":"btc","price":0.01050247,"volume24h":76669.62806598,"volume7d":678795.23972599,"volume30d":4098884.02021882,"marketCap":196089.49661291,"percentChange1h":0.592727,"percentChange24h":1.098705,"percentChange7d":-0.846606,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.32953411,"volume24h":2405648.57654564,"volume7d":21298431.24851809,"volume30d":128609917.08710241,"marketCap":6152663.45098762,"percentChange1h":-0.36866,"percentChange24h":-0.977113,"percentChange7d":-2.239063,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":500.98027910651587,"volume24h":3657231373.094508,"volume7d":32379330763.110336,"volume30d":195521585425.18152,"marketCap":9353699464.015192,"percentChange1h":-0.25126699,"percentChange24h":-4.94828446,"percentChange7d":-1.14218388,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"rank":10,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.01050247,"volume24h":76669.62806598,"volume7d":678795.23972599,"volume30d":4098884.02021882,"marketCap":196089.49661291,"percentChange1h":0.592727,"percentChange24h":1.098705,"percentChange7d":-0.846606,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.32953411,"volume24h":2405648.57654564,"volume7d":21298431.24851809,"volume30d":128609917.08710241,"marketCap":6152663.45098762,"percentChange1h":-0.36866,"percentChange24h":-0.977113,"percentChange7d":-2.239063,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":500.98027910651587,"volume24h":3657231373.094508,"volume7d":32379330763.110336,"volume30d":195521585425.18152,"marketCap":9353699464.015192,"percentChange1h":-0.25126699,"percentChange24h":-4.94828446,"percentChange7d":-1.14218388,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":512,"name":"Stellar","symbol":"XLM","slug":"stellar","tags":["medium-of-exchange","enterprise-solutions","decentralized-exchange","smart-contracts"],"cmcRank":11,"marketPairCount":345,"circulatingSupply":22571070091.037815,"totalSupply":50001803465.79792,"maxSupply":50001806812,"lastUpdated":"2021-03-05T00:10:06.000Z","dateAdded":"2014-08-05T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000853,"volume24h":24210.17091832,"volume7d":199454.96898453,"volume30d":1280429.37155228,"marketCap":192501.26146193,"percentChange1h":0.738649,"percentChange24h":2.253251,"percentChange7d":4.54306,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0002676,"volume24h":759638.00368855,"volume7d":6258261.2479827,"volume30d":40175792.84969319,"marketCap":6040076.06793912,"percentChange1h":-0.224132,"percentChange24h":0.153728,"percentChange7d":3.074913,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.40682769548861,"volume24h":1154853608.4492922,"volume7d":9514236451.780298,"volume30d":61077985987.39196,"marketCap":9182536429.848804,"percentChange1h":-0.10656927,"percentChange24h":-3.86279363,"percentChange7d":4.23141514,"lastUpdated":"2021-03-05T00:10:06.000Z"}],"rank":11,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000853,"volume24h":24210.17091832,"volume7d":199454.96898453,"volume30d":1280429.37155228,"marketCap":192501.26146193,"percentChange1h":0.738649,"percentChange24h":2.253251,"percentChange7d":4.54306,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0002676,"volume24h":759638.00368855,"volume7d":6258261.2479827,"volume30d":40175792.84969319,"marketCap":6040076.06793912,"percentChange1h":-0.224132,"percentChange24h":0.153728,"percentChange7d":3.074913,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.40682769548861,"volume24h":1154853608.4492922,"volume7d":9514236451.780298,"volume30d":61077985987.39196,"marketCap":9182536429.848804,"percentChange1h":-0.10656927,"percentChange24h":-3.86279363,"percentChange7d":4.23141514,"lastUpdated":"2021-03-05T00:10:06.000Z"}}},{"id":3408,"name":"USD Coin","symbol":"USDC","slug":"usd-coin","tags":["medium-of-exchange","stablecoin","stablecoin-asset-backed"],"cmcRank":12,"marketPairCount":790,"circulatingSupply":8654680801.373087,"totalSupply":8820711775.68955,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2018-10-08T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002097,"volume24h":33989.13059838,"volume7d":289010.30865279,"volume30d":1014550.76477185,"marketCap":181468.66516885,"percentChange1h":0.84494,"percentChange24h":6.376446,"percentChange7d":0.304119,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0006579,"volume24h":1066470.59213135,"volume7d":9068222.38682635,"volume30d":31833369.54505938,"marketCap":5693908.35801875,"percentChange1h":-0.118857,"percentChange24h":4.192263,"percentChange7d":-1.104499,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.00018346350022,"volume24h":1621321478.9776556,"volume7d":13786131413.64212,"volume30d":48395263941.11859,"marketCap":8656268619.406195,"percentChange1h":-0.00116962,"percentChange24h":0.01378076,"percentChange7d":0.0051103,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"},"rank":12,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002097,"volume24h":33989.13059838,"volume7d":289010.30865279,"volume30d":1014550.76477185,"marketCap":181468.66516885,"percentChange1h":0.84494,"percentChange24h":6.376446,"percentChange7d":0.304119,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0006579,"volume24h":1066470.59213135,"volume7d":9068222.38682635,"volume30d":31833369.54505938,"marketCap":5693908.35801875,"percentChange1h":-0.118857,"percentChange24h":4.192263,"percentChange7d":-1.104499,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.00018346350022,"volume24h":1621321478.9776556,"volume7d":13786131413.64212,"volume30d":48395263941.11859,"marketCap":8656268619.406195,"percentChange1h":-0.00116962,"percentChange24h":0.01378076,"percentChange7d":0.0051103,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":7083,"name":"Uniswap","symbol":"UNI","slug":"uniswap","tags":["defi","dao","amm","coinbase-ventures-portfolio","three-arrows-capital-portfolio"],"cmcRank":13,"marketPairCount":206,"circulatingSupply":311765813.0653397,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2020-09-17T00:00:00.000Z","quotes":[{"name":"btc","price":0.00057574,"volume24h":37852.13445614,"volume7d":168676.30043742,"volume30d":550896.95256508,"marketCap":179495.00239714,"percentChange1h":-3.007511,"percentChange24h":14.827465,"percentChange7d":14.488695,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01806478,"volume24h":1187679.34148925,"volume7d":5292524.72302396,"volume30d":17285390.61935939,"marketCap":5631981.11046155,"percentChange1h":-3.934489,"percentChange24h":12.469761,"percentChange7d":12.880877,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":27.4633145348696,"volume24h":1805591303.4096966,"volume7d":8046057786.094238,"volume30d":26278432139.115627,"marketCap":8562122585.432782,"percentChange1h":-3.82129826,"percentChange24h":7.95932176,"percentChange7d":14.1474023,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x1f9840a85d5af5bf1d1762f925bdaddc4201f984"},"rank":13,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00057574,"volume24h":37852.13445614,"volume7d":168676.30043742,"volume30d":550896.95256508,"marketCap":179495.00239714,"percentChange1h":-3.007511,"percentChange24h":14.827465,"percentChange7d":14.488695,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01806478,"volume24h":1187679.34148925,"volume7d":5292524.72302396,"volume30d":17285390.61935939,"marketCap":5631981.11046155,"percentChange1h":-3.934489,"percentChange24h":12.469761,"percentChange7d":12.880877,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":27.4633145348696,"volume24h":1805591303.4096966,"volume7d":8046057786.094238,"volume30d":26278432139.115627,"marketCap":8562122585.432782,"percentChange1h":-3.82129826,"percentChange24h":7.95932176,"percentChange7d":14.1474023,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":74,"name":"Dogecoin","symbol":"DOGE","slug":"dogecoin","tags":["mineable","pow","scrypt","medium-of-exchange","memes","payments"],"cmcRank":14,"marketPairCount":310,"circulatingSupply":128619370523.89102,"totalSupply":128619370523.89102,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2013-12-15T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000103,"volume24h":24436.79817548,"volume7d":2055847.07603917,"volume30d":7857884.12367957,"marketCap":132999.59051235,"percentChange1h":-0.25209,"percentChange24h":3.648498,"percentChange7d":-3.149421,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00003245,"volume24h":766748.84473906,"volume7d":64505929.09897566,"volume30d":246555360.10324526,"marketCap":4173103.2700699,"percentChange1h":-1.205403,"percentChange24h":1.520327,"percentChange7d":-4.509539,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.04932567127238,"volume24h":1165663994.9839528,"volume7d":98066321885.69298,"volume30d":374830308535.3397,"marketCap":6344236789.72189,"percentChange1h":-1.08899569,"percentChange24h":-2.55100088,"percentChange7d":-3.43813467,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":14,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000103,"volume24h":24436.79817548,"volume7d":2055847.07603917,"volume30d":7857884.12367957,"marketCap":132999.59051235,"percentChange1h":-0.25209,"percentChange24h":3.648498,"percentChange7d":-3.149421,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00003245,"volume24h":766748.84473906,"volume7d":64505929.09897566,"volume30d":246555360.10324526,"marketCap":4173103.2700699,"percentChange1h":-1.205403,"percentChange24h":1.520327,"percentChange7d":-4.509539,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.04932567127238,"volume24h":1165663994.9839528,"volume7d":98066321885.69298,"volume30d":374830308535.3397,"marketCap":6344236789.72189,"percentChange1h":-1.08899569,"percentChange24h":-2.55100088,"percentChange7d":-3.43813467,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":873,"name":"NEM","symbol":"XEM","slug":"nem","tags":["poi","medium-of-exchange","payments","smart-contracts"],"cmcRank":15,"marketPairCount":104,"circulatingSupply":8999999999,"totalSupply":8999999999,"maxSupply":8999999999,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2015-04-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00001448,"volume24h":15375.9113314,"volume7d":67338.0476526,"volume30d":97018.85726199,"marketCap":130349.77213944,"percentChange1h":0.453954,"percentChange24h":-8.573223,"percentChange7d":36.953464,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00045444,"volume24h":482447.09333455,"volume7d":2112853.32365805,"volume30d":3044142.53411432,"marketCap":4089960.41470858,"percentChange1h":-0.506107,"percentChange24h":-10.45045,"percentChange7d":35.030163,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.69087081550408,"volume24h":733449042.725502,"volume7d":3212104019.417907,"volume30d":4627913523.396172,"marketCap":6217837338.845849,"percentChange1h":-0.38887613,"percentChange24h":-14.04170692,"percentChange7d":36.54520251,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":15,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00001448,"volume24h":15375.9113314,"volume7d":67338.0476526,"volume30d":97018.85726199,"marketCap":130349.77213944,"percentChange1h":0.453954,"percentChange24h":-8.573223,"percentChange7d":36.953464,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00045444,"volume24h":482447.09333455,"volume7d":2112853.32365805,"volume30d":3044142.53411432,"marketCap":4089960.41470858,"percentChange1h":-0.506107,"percentChange24h":-10.45045,"percentChange7d":35.030163,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.69087081550408,"volume24h":733449042.725502,"volume7d":3212104019.417907,"volume30d":4627913523.396172,"marketCap":6217837338.845849,"percentChange1h":-0.38887613,"percentChange24h":-14.04170692,"percentChange7d":36.54520251,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":3717,"name":"Wrapped Bitcoin","symbol":"WBTC","slug":"wrapped-bitcoin","tags":["medium-of-exchange","defi","stablecoin","stablecoin-asset-backed"],"cmcRank":16,"marketPairCount":115,"circulatingSupply":123770.08359608,"totalSupply":123770.08359608,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2019-01-30T00:00:00.000Z","quotes":[{"name":"btc","price":1.00514341,"volume24h":3344.580168,"volume7d":22720.55198877,"volume30d":123228.00107607,"marketCap":124406.68436791,"percentChange1h":0.609502,"percentChange24h":0.599702,"percentChange7d":0.584738,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":31.53819686,"volume24h":104942.26623035,"volume7d":712898.50921235,"volume30d":3866501.93638719,"marketCap":3903485.26152828,"percentChange1h":-0.352045,"percentChange24h":-1.46587,"percentChange7d":-0.82782,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":47946.52224884727,"volume24h":159540405.09623262,"volume7d":1083797034.6722612,"volume30d":5878120488.484257,"marketCap":5934345066.881136,"percentChange1h":-0.23463323,"percentChange24h":-5.41744001,"percentChange7d":0.28489292,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599"},"rank":16,"hasFilters":false,"quote":{"btc":{"name":"btc","price":1.00514341,"volume24h":3344.580168,"volume7d":22720.55198877,"volume30d":123228.00107607,"marketCap":124406.68436791,"percentChange1h":0.609502,"percentChange24h":0.599702,"percentChange7d":0.584738,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":31.53819686,"volume24h":104942.26623035,"volume7d":712898.50921235,"volume30d":3866501.93638719,"marketCap":3903485.26152828,"percentChange1h":-0.352045,"percentChange24h":-1.46587,"percentChange7d":-0.82782,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":47946.52224884727,"volume24h":159540405.09623262,"volume7d":1083797034.6722612,"volume30d":5878120488.484257,"marketCap":5934345066.881136,"percentChange1h":-0.23463323,"percentChange24h":-5.41744001,"percentChange7d":0.28489292,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":7278,"name":"Aave","symbol":"AAVE","slug":"aave","tags":["defi","dao","yield-farming","three-arrows-capital-portfolio"],"cmcRank":17,"marketPairCount":167,"circulatingSupply":12424468.28806046,"totalSupply":16000000,"maxSupply":16000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2020-10-02T00:00:00.000Z","quotes":[{"name":"btc","price":0.00772761,"volume24h":8130.0562849,"volume7d":82845.96376167,"volume30d":424497.13411175,"marketCap":96011.41403638,"percentChange1h":0.81317,"percentChange24h":-0.715383,"percentChange7d":7.078887,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.24246769,"volume24h":255095.25508825,"volume7d":2599442.30620625,"volume30d":13319367.16250642,"marketCap":3012532.1764961,"percentChange1h":-0.150324,"percentChange24h":-2.753952,"percentChange7d":5.575129,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":368.6159593508271,"volume24h":387813240.52573836,"volume7d":3951849845.1913285,"volume30d":20249012233.711475,"marketCap":4579857297.427335,"percentChange1h":-0.03267424,"percentChange24h":-6.65386551,"percentChange7d":6.75968323,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":17,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00772761,"volume24h":8130.0562849,"volume7d":82845.96376167,"volume30d":424497.13411175,"marketCap":96011.41403638,"percentChange1h":0.81317,"percentChange24h":-0.715383,"percentChange7d":7.078887,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.24246769,"volume24h":255095.25508825,"volume7d":2599442.30620625,"volume30d":13319367.16250642,"marketCap":3012532.1764961,"percentChange1h":-0.150324,"percentChange24h":-2.753952,"percentChange7d":5.575129,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":368.6159593508271,"volume24h":387813240.52573836,"volume7d":3951849845.1913285,"volume30d":20249012233.711475,"marketCap":4579857297.427335,"percentChange1h":-0.03267424,"percentChange24h":-6.65386551,"percentChange7d":6.75968323,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":2416,"name":"THETA","symbol":"THETA","slug":"theta","tags":["media","collectibles-nfts","content-creation","video"],"cmcRank":18,"marketPairCount":52,"circulatingSupply":1000000000,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2018-01-17T00:00:00.000Z","quotes":[{"name":"btc","price":0.00009188,"volume24h":9457.4275363,"volume7d":43229.69324178,"volume30d":73231.18013816,"marketCap":91877.59564817,"percentChange1h":4.154445,"percentChange24h":17.431065,"percentChange7d":45.990894,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00288283,"volume24h":296743.93451991,"volume7d":1356409.99747753,"volume30d":2297761.03917593,"marketCap":2882826.13027975,"percentChange1h":3.159018,"percentChange24h":15.019903,"percentChange7d":43.940676,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":4.38266930158813,"volume24h":451130409.3551763,"volume7d":2062107178.0472276,"volume30d":3493213365.526259,"marketCap":4382669301.58813,"percentChange1h":3.28056685,"percentChange24h":10.40719381,"percentChange7d":45.55569248,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":18,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00009188,"volume24h":9457.4275363,"volume7d":43229.69324178,"volume30d":73231.18013816,"marketCap":91877.59564817,"percentChange1h":4.154445,"percentChange24h":17.431065,"percentChange7d":45.990894,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00288283,"volume24h":296743.93451991,"volume7d":1356409.99747753,"volume30d":2297761.03917593,"marketCap":2882826.13027975,"percentChange1h":3.159018,"percentChange24h":15.019903,"percentChange7d":43.940676,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":4.38266930158813,"volume24h":451130409.3551763,"volume7d":2062107178.0472276,"volume30d":3493213365.526259,"marketCap":4382669301.58813,"percentChange1h":3.28056685,"percentChange24h":10.40719381,"percentChange7d":45.55569248,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":3794,"name":"Cosmos","symbol":"ATOM","slug":"cosmos","tags":["platform","content-creation","interoperability","binance-chain","polychain-capital-portfolio"],"cmcRank":19,"marketPairCount":161,"circulatingSupply":211301313.842286,"totalSupply":269085916.842286,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-03-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00038937,"volume24h":16203.81794401,"volume7d":118500.81173913,"volume30d":373370.13277737,"marketCap":82274.25950262,"percentChange1h":0.151443,"percentChange24h":-9.019345,"percentChange7d":3.452789,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01221717,"volume24h":508424.16423431,"volume7d":3718177.80092001,"volume30d":11715164.80642804,"marketCap":2581504.04862389,"percentChange1h":-0.805727,"percentChange24h":-10.887412,"percentChange7d":1.999954,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":18.57337660950871,"volume24h":772941161.2343972,"volume7d":5652628000.966963,"volume30d":17810194177.47381,"marketCap":3924578880.0767736,"percentChange1h":-0.68884942,"percentChange24h":-14.4611447,"percentChange7d":3.14439406,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":19,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00038937,"volume24h":16203.81794401,"volume7d":118500.81173913,"volume30d":373370.13277737,"marketCap":82274.25950262,"percentChange1h":0.151443,"percentChange24h":-9.019345,"percentChange7d":3.452789,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01221717,"volume24h":508424.16423431,"volume7d":3718177.80092001,"volume30d":11715164.80642804,"marketCap":2581504.04862389,"percentChange1h":-0.805727,"percentChange24h":-10.887412,"percentChange7d":1.999954,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":18.57337660950871,"volume24h":772941161.2343972,"volume7d":5652628000.966963,"volume30d":17810194177.47381,"marketCap":3924578880.0767736,"percentChange1h":-0.68884942,"percentChange24h":-14.4611447,"percentChange7d":3.14439406,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":328,"name":"Monero","symbol":"XMR","slug":"monero","tags":["mineable","pow","medium-of-exchange","ringct"],"cmcRank":20,"marketPairCount":184,"circulatingSupply":17854580.12149482,"totalSupply":17854580.12149482,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2014-05-21T00:00:00.000Z","quotes":[{"name":"btc","price":0.00448924,"volume24h":14635.11687109,"volume7d":382512.73051851,"volume30d":822438.00656767,"marketCap":80153.42141631,"percentChange1h":0.853739,"percentChange24h":2.476618,"percentChange7d":8.015922,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.14085791,"volume24h":459203.32414036,"volume7d":12002030.38536348,"volume30d":25805483.47115798,"marketCap":2514958.90875414,"percentChange1h":-0.110142,"percentChange24h":0.372509,"percentChange7d":6.499004,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":214.1418271724297,"volume24h":698112276.268946,"volume7d":18246306835.562084,"volume30d":39231259573.29548,"marketCap":3823412410.6134424,"percentChange1h":0.00755497,"percentChange24h":-3.65278687,"percentChange7d":7.69392356,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":20,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00448924,"volume24h":14635.11687109,"volume7d":382512.73051851,"volume30d":822438.00656767,"marketCap":80153.42141631,"percentChange1h":0.853739,"percentChange24h":2.476618,"percentChange7d":8.015922,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.14085791,"volume24h":459203.32414036,"volume7d":12002030.38536348,"volume30d":25805483.47115798,"marketCap":2514958.90875414,"percentChange1h":-0.110142,"percentChange24h":0.372509,"percentChange7d":6.499004,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":214.1418271724297,"volume24h":698112276.268946,"volume7d":18246306835.562084,"volume30d":39231259573.29548,"marketCap":3823412410.6134424,"percentChange1h":0.00755497,"percentChange24h":-3.65278687,"percentChange7d":7.69392356,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":1958,"name":"TRON","symbol":"TRX","slug":"tron","tags":["media","payments"],"cmcRank":21,"marketPairCount":501,"circulatingSupply":71659657369.49,"totalSupply":100850743811.66246,"lastUpdated":"2021-03-05T00:10:11.000Z","dateAdded":"2017-09-13T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000106,"volume24h":60520.0986173,"volume7d":274694.30745172,"volume30d":1903621.95891832,"marketCap":76201.91785292,"percentChange1h":1.563917,"percentChange24h":10.087493,"percentChange7d":10.829149,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00003337,"volume24h":1898927.81227291,"volume7d":8619031.89536434,"volume30d":59729590.0772042,"marketCap":2390973.32068922,"percentChange1h":0.593248,"percentChange24h":7.827113,"percentChange7d":9.272724,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.05072478964645,"volume24h":2886879836.8955965,"volume7d":13103241329.908632,"volume30d":90805004879.8478,"marketCap":3634921046.204061,"percentChange1h":0.71177445,"percentChange24h":3.50286054,"percentChange7d":10.49876526,"lastUpdated":"2021-03-05T00:10:11.000Z"}],"rank":21,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000106,"volume24h":60520.0986173,"volume7d":274694.30745172,"volume30d":1903621.95891832,"marketCap":76201.91785292,"percentChange1h":1.563917,"percentChange24h":10.087493,"percentChange7d":10.829149,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00003337,"volume24h":1898927.81227291,"volume7d":8619031.89536434,"volume30d":59729590.0772042,"marketCap":2390973.32068922,"percentChange1h":0.593248,"percentChange24h":7.827113,"percentChange7d":9.272724,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.05072478964645,"volume24h":2886879836.8955965,"volume7d":13103241329.908632,"volume30d":90805004879.8478,"marketCap":3634921046.204061,"percentChange1h":0.71177445,"percentChange24h":3.50286054,"percentChange7d":10.49876526,"lastUpdated":"2021-03-05T00:10:11.000Z"}}},{"id":3635,"name":"Crypto.com Coin","symbol":"CRO","slug":"crypto-com-coin","tags":["medium-of-exchange","mobile","payments"],"cmcRank":22,"marketPairCount":112,"circulatingSupply":24143835615.10503,"totalSupply":100000000000,"maxSupply":40400000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-12-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000312,"volume24h":4680.44578821,"volume7d":48806.64072933,"volume30d":164130.38179182,"marketCap":75369.6229421,"percentChange1h":0.27782,"percentChange24h":1.270605,"percentChange7d":-7.047115,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00009795,"volume24h":146857.47188336,"volume7d":1531396.83546447,"volume30d":5149888.28412706,"marketCap":2364858.55897738,"percentChange1h":-0.680557,"percentChange24h":-0.808741,"percentChange7d":-8.352495,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.14890838630724,"volume24h":223262765.30231372,"volume7d":2328134128.1196303,"volume30d":7829212123.612111,"marketCap":3595219600.712559,"percentChange1h":-0.56353168,"percentChange24h":-4.78666502,"percentChange7d":-7.32420905,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b"},"rank":22,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000312,"volume24h":4680.44578821,"volume7d":48806.64072933,"volume30d":164130.38179182,"marketCap":75369.6229421,"percentChange1h":0.27782,"percentChange24h":1.270605,"percentChange7d":-7.047115,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00009795,"volume24h":146857.47188336,"volume7d":1531396.83546447,"volume30d":5149888.28412706,"marketCap":2364858.55897738,"percentChange1h":-0.680557,"percentChange24h":-0.808741,"percentChange7d":-8.352495,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.14890838630724,"volume24h":223262765.30231372,"volume7d":2328134128.1196303,"volume30d":7829212123.612111,"marketCap":3595219600.712559,"percentChange1h":-0.56353168,"percentChange24h":-4.78666502,"percentChange7d":-7.32420905,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1765,"name":"EOS","symbol":"EOS","slug":"eos","tags":["medium-of-exchange","enterprise-solutions","smart-contracts","binance-chain"],"cmcRank":23,"marketPairCount":476,"circulatingSupply":951052054.9565,"totalSupply":1027552466.4603,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-07-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00007779,"volume24h":52708.22713961,"volume7d":452549.46183208,"volume30d":2030226.15093233,"marketCap":73984.1386942,"percentChange1h":0.551144,"percentChange24h":2.474911,"percentChange7d":-0.713583,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00244086,"volume24h":1653816.18235479,"volume7d":14199559.8013844,"volume30d":63702026.12503648,"marketCap":2321386.47892594,"percentChange1h":-0.409845,"percentChange24h":0.370837,"percentChange7d":-2.107908,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":3.71076467923448,"volume24h":2514244385.655206,"volume7d":21587141237.530396,"volume30d":96844173644.30849,"marketCap":3529130373.64595,"percentChange1h":-0.29250139,"percentChange24h":-3.65439174,"percentChange7d":-1.00955795,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":23,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00007779,"volume24h":52708.22713961,"volume7d":452549.46183208,"volume30d":2030226.15093233,"marketCap":73984.1386942,"percentChange1h":0.551144,"percentChange24h":2.474911,"percentChange7d":-0.713583,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00244086,"volume24h":1653816.18235479,"volume7d":14199559.8013844,"volume30d":63702026.12503648,"marketCap":2321386.47892594,"percentChange1h":-0.409845,"percentChange24h":0.370837,"percentChange7d":-2.107908,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":3.71076467923448,"volume24h":2514244385.655206,"volume7d":21587141237.530396,"volume30d":96844173644.30849,"marketCap":3529130373.64595,"percentChange1h":-0.29250139,"percentChange24h":-3.65439174,"percentChange7d":-1.00955795,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":1720,"name":"IOTA","symbol":"MIOTA","slug":"iota","tags":["dag","medium-of-exchange","iot","sharing-economy"],"cmcRank":24,"marketPairCount":71,"circulatingSupply":2779530283,"totalSupply":2779530283,"maxSupply":2779530283,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2017-06-13T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002578,"volume24h":4556.62933641,"volume7d":46426.90019545,"volume30d":457951.68527812,"marketCap":71645.81861397,"percentChange1h":-1.697739,"percentChange24h":4.97022,"percentChange7d":9.889863,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00080878,"volume24h":142972.50623868,"volume7d":1456728.16193246,"volume30d":14369064.35580807,"marketCap":2248017.44721915,"percentChange1h":-2.637236,"percentChange24h":2.814911,"percentChange7d":8.346629,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.22955658312321,"volume24h":217356575.02263322,"volume7d":2214617707.6037326,"volume30d":21844833645.459236,"marketCap":3417589757.452969,"percentChange1h":-2.52251602,"percentChange24h":-1.30833403,"percentChange7d":9.56227927,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"rank":24,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002578,"volume24h":4556.62933641,"volume7d":46426.90019545,"volume30d":457951.68527812,"marketCap":71645.81861397,"percentChange1h":-1.697739,"percentChange24h":4.97022,"percentChange7d":9.889863,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00080878,"volume24h":142972.50623868,"volume7d":1456728.16193246,"volume30d":14369064.35580807,"marketCap":2248017.44721915,"percentChange1h":-2.637236,"percentChange24h":2.814911,"percentChange7d":8.346629,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.22955658312321,"volume24h":217356575.02263322,"volume7d":2214617707.6037326,"volume30d":21844833645.459236,"marketCap":3417589757.452969,"percentChange1h":-2.52251602,"percentChange24h":-1.30833403,"percentChange7d":9.56227927,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":5426,"name":"Solana","symbol":"SOL","slug":"solana","tags":["dpos","platform"],"cmcRank":25,"marketPairCount":38,"circulatingSupply":261900137.02858052,"totalSupply":488630611,"maxSupply":488630611,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2020-04-10T00:00:00.000Z","quotes":[{"name":"btc","price":0.00027048,"volume24h":2384.77949218,"volume7d":27797.52399257,"volume30d":551828.77924205,"marketCap":70837.56673676,"percentChange1h":1.111435,"percentChange24h":-3.201765,"percentChange7d":-6.950286,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00848666,"volume24h":74826.77998389,"volume7d":872197.70998073,"volume30d":17314628.37067744,"marketCap":2222657.07927502,"percentChange1h":0.145091,"percentChange24h":-5.189283,"percentChange7d":-8.257026,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":12.90199856808492,"volume24h":113756784.74937338,"volume7d":1325974566.5192366,"volume30d":26322881366.838093,"marketCap":3379035192.9239902,"percentChange1h":0.26308883,"percentChange24h":-8.99153119,"percentChange7d":-7.22766901,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"rank":25,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00027048,"volume24h":2384.77949218,"volume7d":27797.52399257,"volume30d":551828.77924205,"marketCap":70837.56673676,"percentChange1h":1.111435,"percentChange24h":-3.201765,"percentChange7d":-6.950286,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00848666,"volume24h":74826.77998389,"volume7d":872197.70998073,"volume30d":17314628.37067744,"marketCap":2222657.07927502,"percentChange1h":0.145091,"percentChange24h":-5.189283,"percentChange7d":-8.257026,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":12.90199856808492,"volume24h":113756784.74937338,"volume7d":1325974566.5192366,"volume30d":26322881366.838093,"marketCap":3379035192.9239902,"percentChange1h":0.26308883,"percentChange24h":-8.99153119,"percentChange7d":-7.22766901,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":3602,"name":"Bitcoin SV","symbol":"BSV","slug":"bitcoin-sv","tags":["mineable","pow","sha-256","medium-of-exchange","store-of-value","state-channels"],"cmcRank":26,"marketPairCount":216,"circulatingSupply":18668895.39423905,"totalSupply":18668895.39423905,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2018-11-09T00:00:00.000Z","quotes":[{"name":"btc","price":0.00376915,"volume24h":14032.91389385,"volume7d":112850.69183401,"volume30d":879685.2837945,"marketCap":70365.821895,"percentChange1h":0.484789,"percentChange24h":1.195793,"percentChange7d":-3.901668,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.11826384,"volume24h":440308.11398325,"volume7d":3540895.04567628,"volume30d":27601720.57893821,"marketCap":2207855.22962862,"percentChange1h":-0.475566,"percentChange24h":-0.882018,"percentChange7d":-5.251221,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":179.79276966424558,"volume24h":669386486.4501218,"volume7d":5383110640.573029,"volume30d":41962021983.12486,"marketCap":3356532409.502317,"percentChange1h":-0.35829909,"percentChange24h":-4.85700292,"percentChange7d":-4.18813884,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"rank":26,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00376915,"volume24h":14032.91389385,"volume7d":112850.69183401,"volume30d":879685.2837945,"marketCap":70365.821895,"percentChange1h":0.484789,"percentChange24h":1.195793,"percentChange7d":-3.901668,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.11826384,"volume24h":440308.11398325,"volume7d":3540895.04567628,"volume30d":27601720.57893821,"marketCap":2207855.22962862,"percentChange1h":-0.475566,"percentChange24h":-0.882018,"percentChange7d":-5.251221,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":179.79276966424558,"volume24h":669386486.4501218,"volume7d":5383110640.573029,"volume30d":41962021983.12486,"marketCap":3356532409.502317,"percentChange1h":-0.35829909,"percentChange24h":-4.85700292,"percentChange7d":-4.18813884,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":3077,"name":"VeChain","symbol":"VET","slug":"vechain","tags":["logistics","data-provenance","smart-contracts"],"cmcRank":27,"marketPairCount":122,"circulatingSupply":64315576989,"totalSupply":86712634466,"maxSupply":86712634466,"lastUpdated":"2021-03-05T00:11:02.000Z","dateAdded":"2017-08-22T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000103,"volume24h":14288.85431001,"volume7d":124191.73746993,"volume30d":253409.51752247,"marketCap":66083.38168966,"percentChange1h":1.016218,"percentChange24h":-2.001418,"percentChange7d":22.900652,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00003224,"volume24h":448338.70854002,"volume7d":3896740.9129224,"volume30d":7951183.02369217,"marketCap":2073485.90446046,"percentChange1h":0.050784,"percentChange24h":-4.013582,"percentChange7d":21.174702,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.04901230970596,"volume24h":681595145.1228583,"volume7d":5924091847.207663,"volume30d":12087931833.01093,"marketCap":3152254978.3023825,"percentChange1h":0.16867106,"percentChange24h":-7.86298036,"percentChange7d":22.53428254,"lastUpdated":"2021-03-05T00:11:02.000Z"}],"rank":27,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000103,"volume24h":14288.85431001,"volume7d":124191.73746993,"volume30d":253409.51752247,"marketCap":66083.38168966,"percentChange1h":1.016218,"percentChange24h":-2.001418,"percentChange7d":22.900652,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00003224,"volume24h":448338.70854002,"volume7d":3896740.9129224,"volume30d":7951183.02369217,"marketCap":2073485.90446046,"percentChange1h":0.050784,"percentChange24h":-4.013582,"percentChange7d":21.174702,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.04901230970596,"volume24h":681595145.1228583,"volume7d":5924091847.207663,"volume30d":12087931833.01093,"marketCap":3152254978.3023825,"percentChange1h":0.16867106,"percentChange24h":-7.86298036,"percentChange7d":22.53428254,"lastUpdated":"2021-03-05T00:11:02.000Z"}}},{"id":4172,"name":"Terra","symbol":"LUNA","slug":"terra-luna","tags":["store-of-value","defi","payments","stablecoin-algorithmically-stabilized"],"cmcRank":28,"marketPairCount":44,"circulatingSupply":408504297.8388771,"totalSupply":953524203.973819,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2019-07-26T00:00:00.000Z","quotes":[{"name":"btc","price":0.00015317,"volume24h":7764.16661621,"volume7d":49644.10382155,"volume30d":100178.41936583,"marketCap":62570.56341068,"percentChange1h":-0.112251,"percentChange24h":5.333716,"percentChange7d":19.934559,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00480598,"volume24h":243614.80340409,"volume7d":1557673.75823744,"volume30d":3143279.5231586,"marketCap":1963264.86249567,"percentChange1h":-1.0669,"percentChange24h":3.170943,"percentChange7d":18.250263,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":7.30638437187105,"volume24h":370359873.277513,"volume7d":2368082101.9386754,"volume30d":4778628349.369416,"marketCap":2984689417.5721283,"percentChange1h":-0.95033001,"percentChange24h":-0.96658013,"percentChange7d":19.57703249,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":28,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00015317,"volume24h":7764.16661621,"volume7d":49644.10382155,"volume30d":100178.41936583,"marketCap":62570.56341068,"percentChange1h":-0.112251,"percentChange24h":5.333716,"percentChange7d":19.934559,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00480598,"volume24h":243614.80340409,"volume7d":1557673.75823744,"volume30d":3143279.5231586,"marketCap":1963264.86249567,"percentChange1h":-1.0669,"percentChange24h":3.170943,"percentChange7d":18.250263,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":7.30638437187105,"volume24h":370359873.277513,"volume7d":2368082101.9386754,"volume30d":4778628349.369416,"marketCap":2984689417.5721283,"percentChange1h":-0.95033001,"percentChange24h":-0.96658013,"percentChange7d":19.57703249,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":4687,"name":"Binance USD","symbol":"BUSD","slug":"binance-usd","tags":["store-of-value","stablecoin","stablecoin-asset-backed","binance-chain"],"cmcRank":29,"marketPairCount":374,"circulatingSupply":2922846511.03,"totalSupply":2922846511.03,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2019-09-20T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002096,"volume24h":81676.76636723,"volume7d":581235.74457485,"volume30d":2512440.99331119,"marketCap":61274.09836393,"percentChange1h":0.856206,"percentChange24h":6.372425,"percentChange7d":0.319057,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00065778,"volume24h":2562756.6182932,"volume7d":18237325.22049777,"volume30d":78832391.02206641,"marketCap":1922585.92126515,"percentChange1h":-0.107699,"percentChange24h":4.188325,"percentChange7d":-1.08977,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1,"volume24h":3896077755.249665,"volume7d":27725628176.957794,"volume30d":119846388401.39644,"marketCap":2922846511.03,"percentChange1h":0.010001,"percentChange24h":0.010001,"percentChange7d":0.020004,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"BUSD-BD1"},"rank":29,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002096,"volume24h":81676.76636723,"volume7d":581235.74457485,"volume30d":2512440.99331119,"marketCap":61274.09836393,"percentChange1h":0.856206,"percentChange24h":6.372425,"percentChange7d":0.319057,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00065778,"volume24h":2562756.6182932,"volume7d":18237325.22049777,"volume30d":78832391.02206641,"marketCap":1922585.92126515,"percentChange1h":-0.107699,"percentChange24h":4.188325,"percentChange7d":-1.08977,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1,"volume24h":3896077755.249665,"volume7d":27725628176.957794,"volume30d":119846388401.39644,"marketCap":2922846511.03,"percentChange1h":0.010001,"percentChange24h":0.010001,"percentChange7d":0.020004,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":2502,"name":"Huobi Token","symbol":"HT","slug":"huobi-token","tags":["marketplace","discount-token","payments"],"cmcRank":30,"marketPairCount":178,"circulatingSupply":186866518.25441208,"totalSupply":500000000,"maxSupply":500000000,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2018-02-03T00:00:00.000Z","quotes":[{"name":"btc","price":0.00032456,"volume24h":54563.27695705,"volume7d":204570.11655507,"volume30d":1489832.08628559,"marketCap":60649.86245965,"percentChange1h":0.85685,"percentChange24h":8.592391,"percentChange7d":-12.178476,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01018374,"volume24h":1712021.73343561,"volume7d":6418758.27636665,"volume30d":46746182.65502062,"marketCap":1902999.38807815,"percentChange1h":-0.107061,"percentChange24h":6.362709,"percentChange7d":-13.411795,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":15.48201224981289,"volume24h":2602732442.296767,"volume7d":9758235003.030502,"volume30d":71066741603.56287,"marketCap":2893069724.6946917,"percentChange1h":0.0106396,"percentChange24h":2.0971852,"percentChange7d":-12.44027395,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x6f259637dcd74c767781e37bc6133cd6a68aa161"},"rank":30,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00032456,"volume24h":54563.27695705,"volume7d":204570.11655507,"volume30d":1489832.08628559,"marketCap":60649.86245965,"percentChange1h":0.85685,"percentChange24h":8.592391,"percentChange7d":-12.178476,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01018374,"volume24h":1712021.73343561,"volume7d":6418758.27636665,"volume30d":46746182.65502062,"marketCap":1902999.38807815,"percentChange1h":-0.107061,"percentChange24h":6.362709,"percentChange7d":-13.411795,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":15.48201224981289,"volume24h":2602732442.296767,"volume7d":9758235003.030502,"volume30d":71066741603.56287,"marketCap":2893069724.6946917,"percentChange1h":0.0106396,"percentChange24h":2.0971852,"percentChange7d":-12.44027395,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":2011,"name":"Tezos","symbol":"XTZ","slug":"tezos","tags":["platform","enterprise-solutions","smart-contracts","binance-chain","polychain-capital-portfolio"],"cmcRank":31,"marketPairCount":159,"circulatingSupply":761934225.56633,"totalSupply":761934225.56633,"lastUpdated":"2021-03-05T00:10:10.000Z","dateAdded":"2017-10-06T00:00:00.000Z","quotes":[{"name":"btc","price":0.00007566,"volume24h":10486.2859636,"volume7d":65828.57571378,"volume30d":344119.77595598,"marketCap":57645.63565587,"percentChange1h":0.3131,"percentChange24h":-1.003976,"percentChange7d":5.475018,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00237387,"volume24h":329026.2329156,"volume7d":2065490.90502413,"volume30d":10797381.83257209,"marketCap":1808736.3256839,"percentChange1h":-0.645614,"percentChange24h":-3.036619,"percentChange7d":3.993784,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":3.60892644383478,"volume24h":500208165.61574244,"volume7d":3140100433.7643824,"volume30d":16414917777.419664,"marketCap":2749764575.1091022,"percentChange1h":-0.52854849,"percentChange24h":-6.92519712,"percentChange7d":5.16059525,"lastUpdated":"2021-03-05T00:10:10.000Z"}],"rank":31,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00007566,"volume24h":10486.2859636,"volume7d":65828.57571378,"volume30d":344119.77595598,"marketCap":57645.63565587,"percentChange1h":0.3131,"percentChange24h":-1.003976,"percentChange7d":5.475018,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00237387,"volume24h":329026.2329156,"volume7d":2065490.90502413,"volume30d":10797381.83257209,"marketCap":1808736.3256839,"percentChange1h":-0.645614,"percentChange24h":-3.036619,"percentChange7d":3.993784,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":3.60892644383478,"volume24h":500208165.61574244,"volume7d":3140100433.7643824,"volume30d":16414917777.419664,"marketCap":2749764575.1091022,"percentChange1h":-0.52854849,"percentChange24h":-6.92519712,"percentChange7d":5.16059525,"lastUpdated":"2021-03-05T00:10:10.000Z"}}},{"id":4195,"name":"FTX Token","symbol":"FTT","slug":"ftx-token","tags":["marketplace","derivatives"],"cmcRank":32,"marketPairCount":38,"circulatingSupply":94346957.5237492,"totalSupply":345219293.59097695,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2019-07-31T00:00:00.000Z","quotes":[{"name":"btc","price":0.0006089,"volume24h":2061.44915253,"volume7d":1541.84709627,"volume30d":50938.05856763,"marketCap":57448.11947181,"percentChange1h":0.694841,"percentChange24h":-1.690335,"percentChange7d":1.127635,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01910543,"volume24h":64681.70440495,"volume7d":48378.24789238,"volume30d":1598273.93423312,"marketCap":1802538.89732769,"percentChange1h":-0.267522,"percentChange24h":-3.708886,"percentChange7d":-0.292548,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":29.04537563161002,"volume24h":98333547.51868302,"volume7d":73547918.71613704,"volume30d":2429805264.187835,"marketCap":2740342820.9768505,"percentChange1h":-0.15000961,"percentChange24h":-7.57050257,"percentChange7d":0.82617133,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"FTT-F11"},"rank":32,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0006089,"volume24h":2061.44915253,"volume7d":1541.84709627,"volume30d":50938.05856763,"marketCap":57448.11947181,"percentChange1h":0.694841,"percentChange24h":-1.690335,"percentChange7d":1.127635,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01910543,"volume24h":64681.70440495,"volume7d":48378.24789238,"volume30d":1598273.93423312,"marketCap":1802538.89732769,"percentChange1h":-0.267522,"percentChange24h":-3.708886,"percentChange7d":-0.292548,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":29.04537563161002,"volume24h":98333547.51868302,"volume7d":73547918.71613704,"volume30d":2429805264.187835,"marketCap":2740342820.9768505,"percentChange1h":-0.15000961,"percentChange24h":-7.57050257,"percentChange7d":0.82617133,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":1376,"name":"Neo","symbol":"NEO","slug":"neo","tags":["platform","enterprise-solutions","smart-contracts"],"cmcRank":33,"marketPairCount":274,"circulatingSupply":70538831,"totalSupply":100000000,"maxSupply":100000000,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2016-09-08T00:00:00.000Z","quotes":[{"name":"btc","price":0.00078238,"volume24h":16334.85640719,"volume7d":38038.85907062,"volume30d":1144510.30886215,"marketCap":55187.93140553,"percentChange1h":0.651224,"percentChange24h":0.290737,"percentChange7d":-4.325094,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.02454848,"volume24h":512535.73357913,"volume7d":1193538.16478556,"volume30d":35911085.84727332,"marketCap":1731621.39920602,"percentChange1h":-0.310722,"percentChange24h":-1.768491,"percentChange7d":-5.668701,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":37.32028382612253,"volume24h":779191849.9456043,"volume7d":1814498286.988919,"volume30d":54594486943.36195,"marketCap":2632529193.6828904,"percentChange1h":-0.193261,"percentChange24h":-5.70792542,"percentChange7d":-4.61030303,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":33,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00078238,"volume24h":16334.85640719,"volume7d":38038.85907062,"volume30d":1144510.30886215,"marketCap":55187.93140553,"percentChange1h":0.651224,"percentChange24h":0.290737,"percentChange7d":-4.325094,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.02454848,"volume24h":512535.73357913,"volume7d":1193538.16478556,"volume30d":35911085.84727332,"marketCap":1731621.39920602,"percentChange1h":-0.310722,"percentChange24h":-1.768491,"percentChange7d":-5.668701,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":37.32028382612253,"volume24h":779191849.9456043,"volume7d":1814498286.988919,"volume30d":54594486943.36195,"marketCap":2632529193.6828904,"percentChange1h":-0.193261,"percentChange24h":-5.70792542,"percentChange7d":-4.61030303,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":4943,"name":"Dai","symbol":"DAI","slug":"multi-collateral-dai","tags":["defi","stablecoin"],"cmcRank":34,"marketPairCount":385,"circulatingSupply":2542069329.9770327,"totalSupply":2542069355.7971773,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-11-22T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002099,"volume24h":7180.92978653,"volume7d":50628.54979169,"volume30d":292345.28675957,"marketCap":53360.19832559,"percentChange1h":0.848633,"percentChange24h":6.388753,"percentChange7d":0.31494,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00065863,"volume24h":225314.69051063,"volume7d":1588562.5352733,"volume30d":9172863.37097823,"marketCap":1674272.96028716,"percentChange1h":-0.115199,"percentChange24h":4.204317,"percentChange7d":-1.093829,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.00128826051718,"volume24h":342538790.98907703,"volume7d":2415041331.791895,"volume30d":13945213789.13242,"marketCap":2545344177.5267763,"percentChange1h":0.00249157,"percentChange24h":0.02535186,"percentChange7d":0.01589891,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x6b175474e89094c44da98b954eedeac495271d0f"},"rank":34,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002099,"volume24h":7180.92978653,"volume7d":50628.54979169,"volume30d":292345.28675957,"marketCap":53360.19832559,"percentChange1h":0.848633,"percentChange24h":6.388753,"percentChange7d":0.31494,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00065863,"volume24h":225314.69051063,"volume7d":1588562.5352733,"volume30d":9172863.37097823,"marketCap":1674272.96028716,"percentChange1h":-0.115199,"percentChange24h":4.204317,"percentChange7d":-1.093829,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.00128826051718,"volume24h":342538790.98907703,"volume7d":2415041331.791895,"volume30d":13945213789.13242,"marketCap":2545344177.5267763,"percentChange1h":0.00249157,"percentChange24h":0.02535186,"percentChange7d":0.01589891,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":6892,"name":"Elrond","symbol":"EGLD","slug":"elrond-egld","tags":[],"cmcRank":35,"marketPairCount":30,"circulatingSupply":17063225.67034905,"totalSupply":21294942,"maxSupply":31415926,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2020-09-04T00:00:00.000Z","quotes":[{"name":"btc","price":0.00307347,"volume24h":7129.48509212,"volume7d":29736.01618358,"volume30d":107139.04126183,"marketCap":52443.36361613,"percentChange1h":2.148281,"percentChange24h":11.889197,"percentChange7d":26.444798,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.09643579,"volume24h":223700.51995818,"volume7d":933021.41680685,"volume30d":3361681.65420297,"marketCap":1645505.609129,"percentChange1h":1.172027,"percentChange24h":9.591823,"percentChange7d":24.669076,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":146.6082751646763,"volume24h":340084818.59947157,"volume7d":1418442922.4549956,"volume30d":5110658195.039189,"marketCap":2501610084.2755017,"percentChange1h":1.29123519,"percentChange24h":5.19680043,"percentChange7d":26.06786392,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":35,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00307347,"volume24h":7129.48509212,"volume7d":29736.01618358,"volume30d":107139.04126183,"marketCap":52443.36361613,"percentChange1h":2.148281,"percentChange24h":11.889197,"percentChange7d":26.444798,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.09643579,"volume24h":223700.51995818,"volume7d":933021.41680685,"volume30d":3361681.65420297,"marketCap":1645505.609129,"percentChange1h":1.172027,"percentChange24h":9.591823,"percentChange7d":24.669076,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":146.6082751646763,"volume24h":340084818.59947157,"volume7d":1418442922.4549956,"volume30d":5110658195.039189,"marketCap":2501610084.2755017,"percentChange1h":1.29123519,"percentChange24h":5.19680043,"percentChange7d":26.06786392,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":2586,"name":"Synthetix","symbol":"SNX","slug":"synthetix-network-token","tags":["services","defi","dao","yield-farming","three-arrows-capital-portfolio"],"cmcRank":36,"marketPairCount":164,"circulatingSupply":114841533.01197928,"totalSupply":215258834.2449152,"maxSupply":212424133,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-03-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00044392,"volume24h":4165.69169689,"volume7d":33582.42164691,"volume30d":181866.47017943,"marketCap":50979.95600322,"percentChange1h":-0.198033,"percentChange24h":-1.030773,"percentChange7d":12.742671,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01392866,"volume24h":130706.12905977,"volume7d":1053709.36144778,"volume30d":5706390.21141467,"marketCap":1599588.54223163,"percentChange1h":-1.151862,"percentChange24h":-3.062867,"percentChange7d":11.159374,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":21.17529919124767,"volume24h":198708390.1255199,"volume7d":1601920983.9634235,"volume30d":8675244385.974516,"marketCap":2431803821.1102076,"percentChange1h":-1.03539199,"percentChange24h":-6.95039161,"percentChange7d":12.4065826,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f"},"rank":36,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00044392,"volume24h":4165.69169689,"volume7d":33582.42164691,"volume30d":181866.47017943,"marketCap":50979.95600322,"percentChange1h":-0.198033,"percentChange24h":-1.030773,"percentChange7d":12.742671,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01392866,"volume24h":130706.12905977,"volume7d":1053709.36144778,"volume30d":5706390.21141467,"marketCap":1599588.54223163,"percentChange1h":-1.151862,"percentChange24h":-3.062867,"percentChange7d":11.159374,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":21.17529919124767,"volume24h":198708390.1255199,"volume7d":1601920983.9634235,"volume30d":8675244385.974516,"marketCap":2431803821.1102076,"percentChange1h":-1.03539199,"percentChange24h":-6.95039161,"percentChange7d":12.4065826,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":4030,"name":"Algorand","symbol":"ALGO","slug":"algorand","tags":["pos","platform","research","smart-contracts"],"cmcRank":37,"marketPairCount":132,"circulatingSupply":2215007594.717789,"totalSupply":3700000000,"maxSupply":10000000000,"lastUpdated":"2021-03-05T00:10:11.000Z","dateAdded":"2019-06-20T00:00:00.000Z","quotes":[{"name":"btc","price":0.0000224,"volume24h":11446.72869384,"volume7d":82285.53102208,"volume30d":400471.13711132,"marketCap":49608.61390106,"percentChange1h":0.154051,"percentChange24h":-3.958229,"percentChange7d":6.056467,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00070273,"volume24h":359161.86478352,"volume7d":2581857.7129814,"volume30d":12565507.94938457,"marketCap":1556560.19764164,"percentChange1h":-0.803144,"percentChange24h":-5.930215,"percentChange7d":4.567067,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.06834360146715,"volume24h":546022412.7131515,"volume7d":3925116544.803226,"volume30d":19102943937.616257,"marketCap":2366389191.017892,"percentChange1h":-0.68626331,"percentChange24h":-9.70274933,"percentChange7d":5.74031105,"lastUpdated":"2021-03-05T00:10:11.000Z"}],"rank":37,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0000224,"volume24h":11446.72869384,"volume7d":82285.53102208,"volume30d":400471.13711132,"marketCap":49608.61390106,"percentChange1h":0.154051,"percentChange24h":-3.958229,"percentChange7d":6.056467,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00070273,"volume24h":359161.86478352,"volume7d":2581857.7129814,"volume30d":12565507.94938457,"marketCap":1556560.19764164,"percentChange1h":-0.803144,"percentChange24h":-5.930215,"percentChange7d":4.567067,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.06834360146715,"volume24h":546022412.7131515,"volume7d":3925116544.803226,"volume30d":19102943937.616257,"marketCap":2366389191.017892,"percentChange1h":-0.68626331,"percentChange24h":-9.70274933,"percentChange7d":5.74031105,"lastUpdated":"2021-03-05T00:10:11.000Z"}}},{"id":2280,"name":"Filecoin","symbol":"FIL","slug":"filecoin","tags":["mineable","distributed-computing","filesharing","ipfs","polychain-capital-portfolio"],"cmcRank":38,"marketPairCount":111,"circulatingSupply":57415312,"totalSupply":57415312,"maxSupply":2000000000,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2017-12-13T00:00:00.000Z","quotes":[{"name":"btc","price":0.00084423,"volume24h":22350.96432223,"volume7d":144231.87463851,"volume30d":469306.76711785,"marketCap":48471.59090692,"percentChange1h":0.895361,"percentChange24h":1.368405,"percentChange7d":15.072379,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.02648917,"volume24h":701302.02614172,"volume7d":4525536.54777125,"volume30d":14725350.63439544,"marketCap":1520884.03986751,"percentChange1h":-0.068918,"percentChange24h":-0.71295,"percentChange7d":13.456364,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":40.27064866923993,"volume24h":1066167268.5805088,"volume7d":6880029944.507083,"volume30d":22386484395.513462,"marketCap":2312151857.7867956,"percentChange1h":0.04882814,"percentChange24h":-4.69471464,"percentChange7d":14.72934602,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"rank":38,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00084423,"volume24h":22350.96432223,"volume7d":144231.87463851,"volume30d":469306.76711785,"marketCap":48471.59090692,"percentChange1h":0.895361,"percentChange24h":1.368405,"percentChange7d":15.072379,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.02648917,"volume24h":701302.02614172,"volume7d":4525536.54777125,"volume30d":14725350.63439544,"marketCap":1520884.03986751,"percentChange1h":-0.068918,"percentChange24h":-0.71295,"percentChange7d":13.456364,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":40.27064866923993,"volume24h":1066167268.5805088,"volume7d":6880029944.507083,"volume30d":22386484395.513462,"marketCap":2312151857.7867956,"percentChange1h":0.04882814,"percentChange24h":-4.69471464,"percentChange7d":14.72934602,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":6719,"name":"The Graph","symbol":"GRT","slug":"the-graph","tags":["ai-big-data","enterprise-solutions"],"cmcRank":39,"marketPairCount":89,"circulatingSupply":1245666867,"totalSupply":0,"maxSupply":10000000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2020-12-17T00:00:00.000Z","quotes":[{"name":"btc","price":0.00003785,"volume24h":6368.10454865,"volume7d":63579.05538281,"volume30d":263936.81471379,"marketCap":47152.90569326,"percentChange1h":-0.615635,"percentChange24h":-3.999938,"percentChange7d":4.132075,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00118772,"volume24h":199810.82508403,"volume7d":1994908.12643762,"volume30d":8281496.05822752,"marketCap":1479507.90061694,"percentChange1h":-1.565473,"percentChange24h":-5.971067,"percentChange7d":2.6697,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.80565854543727,"volume24h":303766071.7803386,"volume7d":3032795669.983195,"volume30d":12590096282.391731,"marketCap":2249249023.166621,"percentChange1h":-1.44949063,"percentChange24h":-9.74196263,"percentChange7d":3.82165488,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xc944e90c64b2c07662a292be6244bdf05cda44a7"},"rank":39,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00003785,"volume24h":6368.10454865,"volume7d":63579.05538281,"volume30d":263936.81471379,"marketCap":47152.90569326,"percentChange1h":-0.615635,"percentChange24h":-3.999938,"percentChange7d":4.132075,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00118772,"volume24h":199810.82508403,"volume7d":1994908.12643762,"volume30d":8281496.05822752,"marketCap":1479507.90061694,"percentChange1h":-1.565473,"percentChange24h":-5.971067,"percentChange7d":2.6697,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.80565854543727,"volume24h":303766071.7803386,"volume7d":3032795669.983195,"volume30d":12590096282.391731,"marketCap":2249249023.166621,"percentChange1h":-1.44949063,"percentChange24h":-9.74196263,"percentChange7d":3.82165488,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":5692,"name":"Compound","symbol":"COMP","slug":"compound","tags":["defi","dao","yield-farming","three-arrows-capital-portfolio","polychain-capital-portfolio"],"cmcRank":40,"marketPairCount":167,"circulatingSupply":4650311.35684661,"totalSupply":10000000,"maxSupply":10000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2020-06-16T00:00:00.000Z","quotes":[{"name":"btc","price":0.00977583,"volume24h":5171.75134415,"volume7d":45716.97014765,"volume30d":209356.44750153,"marketCap":45460.6419049,"percentChange1h":1.872424,"percentChange24h":0.491181,"percentChange7d":16.076853,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.30673431,"volume24h":162273.07439924,"volume7d":1434452.81963589,"volume30d":6568938.0870516,"marketCap":1426410.05631666,"percentChange1h":0.898807,"percentChange24h":-1.572162,"percentChange7d":14.446733,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":466.3184645155984,"volume24h":246698617.78131682,"volume7d":2180753209.901241,"volume30d":9986548614.83454,"marketCap":2168526051.4441605,"percentChange1h":1.01769347,"percentChange24h":-5.51947038,"percentChange7d":15.73082634,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xc00e94cb662c3520282e6f5717214004a7f26888"},"rank":40,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00977583,"volume24h":5171.75134415,"volume7d":45716.97014765,"volume30d":209356.44750153,"marketCap":45460.6419049,"percentChange1h":1.872424,"percentChange24h":0.491181,"percentChange7d":16.076853,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.30673431,"volume24h":162273.07439924,"volume7d":1434452.81963589,"volume30d":6568938.0870516,"marketCap":1426410.05631666,"percentChange1h":0.898807,"percentChange24h":-1.572162,"percentChange7d":14.446733,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":466.3184645155984,"volume24h":246698617.78131682,"volume7d":2180753209.901241,"volume30d":9986548614.83454,"marketCap":2168526051.4441605,"percentChange1h":1.01769347,"percentChange24h":-5.51947038,"percentChange7d":15.73082634,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":6758,"name":"SushiSwap","symbol":"SUSHI","slug":"sushiswap","tags":["defi","memes","dao","yield-farming","amm","yearn-partnerships"],"cmcRank":41,"marketPairCount":158,"circulatingSupply":127244443,"totalSupply":202332980.62745193,"maxSupply":250000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2020-08-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00035601,"volume24h":14537.24482985,"volume7d":100130.18468015,"volume30d":821351.02438781,"marketCap":45300.37412207,"percentChange1h":0.213373,"percentChange24h":2.755064,"percentChange7d":16.048988,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01117048,"volume24h":456132.41141244,"volume7d":3141766.07244977,"volume30d":25771377.43465207,"marketCap":1421381.36407757,"percentChange1h":-0.744388,"percentChange24h":0.645237,"percentChange7d":14.419259,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":16.98212541848296,"volume24h":693443664.8673878,"volume7d":4776327498.169484,"volume30d":39179409245.72168,"marketCap":2160881089.831006,"percentChange1h":-0.62743818,"percentChange24h":-3.39099605,"percentChange7d":15.70304376,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x6b3595068778dd592e39a122f4f5a5cf09c90fe2"},"rank":41,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00035601,"volume24h":14537.24482985,"volume7d":100130.18468015,"volume30d":821351.02438781,"marketCap":45300.37412207,"percentChange1h":0.213373,"percentChange24h":2.755064,"percentChange7d":16.048988,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01117048,"volume24h":456132.41141244,"volume7d":3141766.07244977,"volume30d":25771377.43465207,"marketCap":1421381.36407757,"percentChange1h":-0.744388,"percentChange24h":0.645237,"percentChange7d":14.419259,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":16.98212541848296,"volume24h":693443664.8673878,"volume7d":4776327498.169484,"volume30d":39179409245.72168,"marketCap":2160881089.831006,"percentChange1h":-0.62743818,"percentChange24h":-3.39099605,"percentChange7d":15.70304376,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1518,"name":"Maker","symbol":"MKR","slug":"maker","tags":["store-of-value","defi","dao","polychain-capital-portfolio"],"cmcRank":42,"marketPairCount":196,"circulatingSupply":995238.77828647,"totalSupply":995238.77828647,"maxSupply":1005577,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2017-01-29T00:00:00.000Z","quotes":[{"name":"btc","price":0.04513755,"volume24h":2019.18797138,"volume7d":36436.67555556,"volume30d":136798.18919002,"marketCap":44922.63579848,"percentChange1h":3.461357,"percentChange24h":3.197587,"percentChange7d":4.891561,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":1.41627233,"volume24h":63355.68323012,"volume7d":1143266.75236853,"volume30d":4292291.19014091,"marketCap":1409529.13936526,"percentChange1h":2.472554,"percentChange24h":1.078675,"percentChange7d":3.41852,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":2153.113980855009,"volume24h":96317639.50566718,"volume7d":1738072250.1796107,"volume30d":6525434411.364316,"marketCap":2142862527.8176568,"percentChange1h":2.59329429,"percentChange24h":-2.97494111,"percentChange7d":4.57887705,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2"},"rank":42,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.04513755,"volume24h":2019.18797138,"volume7d":36436.67555556,"volume30d":136798.18919002,"marketCap":44922.63579848,"percentChange1h":3.461357,"percentChange24h":3.197587,"percentChange7d":4.891561,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":1.41627233,"volume24h":63355.68323012,"volume7d":1143266.75236853,"volume30d":4292291.19014091,"marketCap":1409529.13936526,"percentChange1h":2.472554,"percentChange24h":1.078675,"percentChange7d":3.41852,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":2153.113980855009,"volume24h":96317639.50566718,"volume7d":1738072250.1796107,"volume30d":6525434411.364316,"marketCap":2142862527.8176568,"percentChange1h":2.59329429,"percentChange24h":-2.97494111,"percentChange7d":4.57887705,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":131,"name":"Dash","symbol":"DASH","slug":"dash","tags":["mineable","hybrid-pow-pos","x11","medium-of-exchange","privacy","masternodes"],"cmcRank":43,"marketPairCount":366,"circulatingSupply":10008171.30110249,"totalSupply":10008171.30110249,"maxSupply":18900000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2014-02-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00436535,"volume24h":20856.95869527,"volume7d":170323.77158629,"volume30d":44439442.76871459,"marketCap":43689.12940255,"percentChange1h":1.199766,"percentChange24h":-1.769354,"percentChange7d":-6.260305,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.13697064,"volume24h":654424.89108151,"volume7d":5344217.11705453,"volume30d":1394368082.0654943,"marketCap":1370825.63994326,"percentChange1h":0.232578,"percentChange24h":-3.786282,"percentChange7d":-7.576735,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":208.2321295488889,"volume24h":994901444.18102,"volume7d":8124644096.2652855,"volume30d":2119813652372.345,"marketCap":2084022822.9186459,"percentChange1h":0.35067947,"percentChange24h":-7.64479563,"percentChange7d":-6.53974465,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":43,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00436535,"volume24h":20856.95869527,"volume7d":170323.77158629,"volume30d":44439442.76871459,"marketCap":43689.12940255,"percentChange1h":1.199766,"percentChange24h":-1.769354,"percentChange7d":-6.260305,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.13697064,"volume24h":654424.89108151,"volume7d":5344217.11705453,"volume30d":1394368082.0654943,"marketCap":1370825.63994326,"percentChange1h":0.232578,"percentChange24h":-3.786282,"percentChange7d":-7.576735,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":208.2321295488889,"volume24h":994901444.18102,"volume7d":8124644096.2652855,"volume30d":2119813652372.345,"marketCap":2084022822.9186459,"percentChange1h":0.35067947,"percentChange24h":-7.64479563,"percentChange7d":-6.53974465,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":5034,"name":"Kusama","symbol":"KSM","slug":"kusama","tags":["substrate","dot-ecosystem"],"cmcRank":44,"marketPairCount":68,"circulatingSupply":8470098.05726206,"totalSupply":9651217.45126206,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-12-12T00:00:00.000Z","quotes":[{"name":"btc","price":0.00484762,"volume24h":3585.89484312,"volume7d":23965.17459165,"volume30d":123808.40336632,"marketCap":41059.80481333,"percentChange1h":-0.386578,"percentChange24h":-1.370442,"percentChange7d":1.195816,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.15210282,"volume24h":112513.95164668,"volume7d":751950.79978019,"volume30d":3884713.11046737,"marketCap":1288325.81419871,"percentChange1h":-1.338606,"percentChange24h":-3.395561,"percentChange7d":-0.225324,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":231.23710450231974,"volume24h":171051398.73087788,"volume7d":1143166995.7082946,"volume30d":5905806359.910481,"marketCap":1958600949.6120024,"percentChange1h":-1.22235639,"percentChange24h":-7.2697441,"percentChange7d":0.89414947,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":44,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00484762,"volume24h":3585.89484312,"volume7d":23965.17459165,"volume30d":123808.40336632,"marketCap":41059.80481333,"percentChange1h":-0.386578,"percentChange24h":-1.370442,"percentChange7d":1.195816,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.15210282,"volume24h":112513.95164668,"volume7d":751950.79978019,"volume30d":3884713.11046737,"marketCap":1288325.81419871,"percentChange1h":-1.338606,"percentChange24h":-3.395561,"percentChange7d":-0.225324,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":231.23710450231974,"volume24h":171051398.73087788,"volume7d":1143166995.7082946,"volume30d":5905806359.910481,"marketCap":1958600949.6120024,"percentChange1h":-1.22235639,"percentChange24h":-7.2697441,"percentChange7d":0.89414947,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":5805,"name":"Avalanche","symbol":"AVAX","slug":"avalanche","tags":["defi","polychain-capital-portfolio"],"cmcRank":45,"marketPairCount":49,"circulatingSupply":76937055.27646953,"totalSupply":360000000,"maxSupply":720000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2020-07-13T00:00:00.000Z","quotes":[{"name":"btc","price":0.00052068,"volume24h":5751.4404872,"volume7d":84550.72768687,"volume30d":1038254.8247658,"marketCap":40059.41280399,"percentChange1h":0.094831,"percentChange24h":-4.027118,"percentChange7d":-9.477906,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01633721,"volume24h":180461.87219284,"volume7d":2652932.36496176,"volume30d":32577127.40095651,"marketCap":1256936.70127408,"percentChange1h":-0.861798,"percentChange24h":-5.997689,"percentChange7d":-10.749149,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":24.83694064037185,"volume24h":274350471.247435,"volume7d":4033169088.133382,"volume30d":49525975463.613014,"marketCap":1910881074.9466815,"percentChange1h":-0.74498566,"percentChange24h":-9.76751712,"percentChange7d":-9.74775356,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"rank":45,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00052068,"volume24h":5751.4404872,"volume7d":84550.72768687,"volume30d":1038254.8247658,"marketCap":40059.41280399,"percentChange1h":0.094831,"percentChange24h":-4.027118,"percentChange7d":-9.477906,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01633721,"volume24h":180461.87219284,"volume7d":2652932.36496176,"volume30d":32577127.40095651,"marketCap":1256936.70127408,"percentChange1h":-0.861798,"percentChange24h":-5.997689,"percentChange7d":-10.749149,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":24.83694064037185,"volume24h":274350471.247435,"volume7d":4033169088.133382,"volume30d":49525975463.613014,"marketCap":1910881074.9466815,"percentChange1h":-0.74498566,"percentChange24h":-9.76751712,"percentChange7d":-9.74775356,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":3957,"name":"UNUS SED LEO","symbol":"LEO","slug":"unus-sed-leo","tags":["marketplace","discount-token","payments"],"cmcRank":46,"marketPairCount":21,"circulatingSupply":999498892.9,"totalSupply":999498892.9,"lastUpdated":"2021-03-05T00:10:11.000Z","dateAdded":"2019-05-21T00:00:00.000Z","quotes":[{"name":"btc","price":0.00003985,"volume24h":12.29842534,"volume7d":274.66902338,"volume30d":12088.05018826,"marketCap":39825.20404553,"percentChange1h":-0.07669,"percentChange24h":4.713002,"percentChange7d":-4.064307,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00125021,"volume24h":385.88539121,"volume7d":8618.23856163,"volume30d":379284.48933631,"marketCap":1249587.97687546,"percentChange1h":-1.031679,"percentChange24h":2.562974,"percentChange7d":-5.411576,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.90066147684953,"volume24h":586649.34392134,"volume7d":13102035.24974253,"volume30d":576614201.7803488,"marketCap":1899709041.8887842,"percentChange1h":-0.91506752,"percentChange24h":-1.55016688,"percentChange7d":-4.35029285,"lastUpdated":"2021-03-05T00:10:11.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3"},"rank":46,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00003985,"volume24h":12.29842534,"volume7d":274.66902338,"volume30d":12088.05018826,"marketCap":39825.20404553,"percentChange1h":-0.07669,"percentChange24h":4.713002,"percentChange7d":-4.064307,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00125021,"volume24h":385.88539121,"volume7d":8618.23856163,"volume30d":379284.48933631,"marketCap":1249587.97687546,"percentChange1h":-1.031679,"percentChange24h":2.562974,"percentChange7d":-5.411576,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.90066147684953,"volume24h":586649.34392134,"volume7d":13102035.24974253,"volume30d":576614201.7803488,"marketCap":1899709041.8887842,"percentChange1h":-0.91506752,"percentChange24h":-1.55016688,"percentChange7d":-4.35029285,"lastUpdated":"2021-03-05T00:10:11.000Z"}}},{"id":1168,"name":"Decred","symbol":"DCR","slug":"decred","tags":["mineable","hybrid-pow-pos","blake256","medium-of-exchange","store-of-value","privacy","dao"],"cmcRank":47,"marketPairCount":55,"circulatingSupply":12670606.17099592,"totalSupply":12670606.17099592,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2016-02-10T00:00:00.000Z","quotes":[{"name":"btc","price":0.00295672,"volume24h":493.72757357,"volume7d":2619.48639079,"volume30d":31515.09505271,"marketCap":37463.47781561,"percentChange1h":-0.192614,"percentChange24h":0.192948,"percentChange7d":-2.321909,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.09277256,"volume24h":15491.59770983,"volume7d":82191.13443267,"volume30d":988843.24165512,"marketCap":1175484.53478875,"percentChange1h":-1.146495,"percentChange24h":-1.864272,"percentChange7d":-3.693647,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":141.03918160883566,"volume24h":23551385.56651233,"volume7d":124952579.6777166,"volume30d":1503307075.569009,"marketCap":1787051924.8451276,"percentChange1h":-1.03001908,"percentChange24h":-5.79986492,"percentChange7d":-2.61308919,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":47,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00295672,"volume24h":493.72757357,"volume7d":2619.48639079,"volume30d":31515.09505271,"marketCap":37463.47781561,"percentChange1h":-0.192614,"percentChange24h":0.192948,"percentChange7d":-2.321909,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.09277256,"volume24h":15491.59770983,"volume7d":82191.13443267,"volume30d":988843.24165512,"marketCap":1175484.53478875,"percentChange1h":-1.146495,"percentChange24h":-1.864272,"percentChange7d":-3.693647,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":141.03918160883566,"volume24h":23551385.56651233,"volume7d":124952579.6777166,"volume30d":1503307075.569009,"marketCap":1787051924.8451276,"percentChange1h":-1.03001908,"percentChange24h":-5.79986492,"percentChange7d":-2.61308919,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":7186,"name":"PancakeSwap","symbol":"CAKE","slug":"pancakeswap","tags":["defi","yield-farming","binance-chain","binance-smart-chain"],"cmcRank":48,"marketPairCount":38,"circulatingSupply":125775296.17611386,"totalSupply":206281134.3945483,"lastUpdated":"2021-03-05T00:11:02.000Z","dateAdded":"2020-09-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00023768,"volume24h":7240.03076979,"volume7d":59533.70768802,"volume30d":100547.32540988,"marketCap":29893.86257618,"percentChange1h":0.632438,"percentChange24h":-4.939399,"percentChange7d":-8.062458,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00745754,"volume24h":227169.0910056,"volume7d":1867978.00861787,"volume30d":3154854.61908834,"marketCap":937974.13353748,"percentChange1h":-0.329328,"percentChange24h":-6.891238,"percentChange7d":-9.35358,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":11.33745993260221,"volume24h":345357977.35513425,"volume7d":2839827830.205227,"volume30d":4796225601.267946,"marketCap":1425972380.907867,"percentChange1h":-0.21188936,"percentChange24h":-10.62523189,"percentChange7d":-8.33652618,"lastUpdated":"2021-03-05T00:11:02.000Z"}],"rank":48,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00023768,"volume24h":7240.03076979,"volume7d":59533.70768802,"volume30d":100547.32540988,"marketCap":29893.86257618,"percentChange1h":0.632438,"percentChange24h":-4.939399,"percentChange7d":-8.062458,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00745754,"volume24h":227169.0910056,"volume7d":1867978.00861787,"volume30d":3154854.61908834,"marketCap":937974.13353748,"percentChange1h":-0.329328,"percentChange24h":-6.891238,"percentChange7d":-9.35358,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":11.33745993260221,"volume24h":345357977.35513425,"volume7d":2839827830.205227,"volume30d":4796225601.267946,"marketCap":1425972380.907867,"percentChange1h":-0.21188936,"percentChange24h":-10.62523189,"percentChange7d":-8.33652618,"lastUpdated":"2021-03-05T00:11:02.000Z"}}},{"id":6535,"name":"NEAR Protocol","symbol":"NEAR","slug":"near-protocol","tags":["platform","staking","coinbase-ventures-portfolio"],"cmcRank":49,"marketPairCount":30,"circulatingSupply":307336884,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2020-08-11T00:00:00.000Z","quotes":[{"name":"btc","price":0.00009348,"volume24h":2481.09712362,"volume7d":12448.37846233,"volume30d":28445.06348744,"marketCap":28729.29174561,"percentChange1h":3.249939,"percentChange24h":13.573602,"percentChange7d":10.92209,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00293305,"volume24h":77848.92028642,"volume7d":390590.44218174,"volume30d":892515.43557015,"marketCap":901433.61245367,"percentChange1h":2.263156,"percentChange24h":11.241643,"percentChange7d":9.36436,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":4.45901892953731,"volume24h":118351248.9766253,"volume7d":593802283.9683036,"volume30d":1356862961.5159194,"marketCap":1370420983.5010123,"percentChange1h":2.38364988,"percentChange24h":6.78045602,"percentChange7d":10.59142877,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":49,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00009348,"volume24h":2481.09712362,"volume7d":12448.37846233,"volume30d":28445.06348744,"marketCap":28729.29174561,"percentChange1h":3.249939,"percentChange24h":13.573602,"percentChange7d":10.92209,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00293305,"volume24h":77848.92028642,"volume7d":390590.44218174,"volume30d":892515.43557015,"marketCap":901433.61245367,"percentChange1h":2.263156,"percentChange24h":11.241643,"percentChange7d":9.36436,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":4.45901892953731,"volume24h":118351248.9766253,"volume7d":593802283.9683036,"volume30d":1356862961.5159194,"marketCap":1370420983.5010123,"percentChange1h":2.38364988,"percentChange24h":6.78045602,"percentChange7d":10.59142877,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1437,"name":"Zcash","symbol":"ZEC","slug":"zcash","tags":["mineable","pow","equihash","medium-of-exchange","zero-knowledge-proofs","binance-chain"],"cmcRank":50,"marketPairCount":270,"circulatingSupply":11262431.25,"totalSupply":11262431.25,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2016-10-29T00:00:00.000Z","quotes":[{"name":"btc","price":0.00251152,"volume24h":9903.14322368,"volume7d":143797.08537276,"volume30d":1314371.03688934,"marketCap":28285.78649125,"percentChange1h":0.868835,"percentChange24h":3.037525,"percentChange7d":-5.707318,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0788034,"volume24h":310729.07225899,"volume7d":4511894.24631982,"volume30d":41240774.13319994,"marketCap":887517.83105809,"percentChange1h":-0.095191,"percentChange24h":0.921898,"percentChange7d":-7.031513,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":119.80230836836377,"volume24h":472391571.51954085,"volume7d":6859289985.497342,"volume30d":62697043317.61604,"marketCap":1349265261.5899966,"percentChange1h":0.02252386,"percentChange24h":-3.12542971,"percentChange7d":-5.98840585,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":50,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00251152,"volume24h":9903.14322368,"volume7d":143797.08537276,"volume30d":1314371.03688934,"marketCap":28285.78649125,"percentChange1h":0.868835,"percentChange24h":3.037525,"percentChange7d":-5.707318,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0788034,"volume24h":310729.07225899,"volume7d":4511894.24631982,"volume30d":41240774.13319994,"marketCap":887517.83105809,"percentChange1h":-0.095191,"percentChange24h":0.921898,"percentChange7d":-7.031513,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":119.80230836836377,"volume24h":472391571.51954085,"volume7d":6859289985.497342,"volume30d":62697043317.61604,"marketCap":1349265261.5899966,"percentChange1h":0.02252386,"percentChange24h":-3.12542971,"percentChange7d":-5.98840585,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":2469,"name":"Zilliqa","symbol":"ZIL","slug":"zilliqa","tags":["mineable","platform","payments","polychain-capital-portfolio"],"cmcRank":51,"marketPairCount":114,"circulatingSupply":11015439933.933638,"totalSupply":14306907086.933638,"maxSupply":21000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-01-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000244,"volume24h":3791.66594993,"volume7d":14925.28072766,"volume30d":104547.68006249,"marketCap":26833.23387379,"percentChange1h":-1.847257,"percentChange24h":-2.800882,"percentChange7d":3.938453,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00007643,"volume24h":118970.39316971,"volume7d":468307.74118453,"volume30d":3280372.99864064,"marketCap":841941.35932215,"percentChange1h":-2.785324,"percentChange24h":-4.796631,"percentChange7d":2.478797,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.11619842712982,"volume24h":180866922.38083223,"volume7d":711953433.2742867,"volume30d":4987047220.050622,"marketCap":1279976794.466097,"percentChange1h":-2.67077875,"percentChange24h":-8.61462588,"percentChange7d":3.62860967,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":51,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000244,"volume24h":3791.66594993,"volume7d":14925.28072766,"volume30d":104547.68006249,"marketCap":26833.23387379,"percentChange1h":-1.847257,"percentChange24h":-2.800882,"percentChange7d":3.938453,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00007643,"volume24h":118970.39316971,"volume7d":468307.74118453,"volume30d":3280372.99864064,"marketCap":841941.35932215,"percentChange1h":-2.785324,"percentChange24h":-4.796631,"percentChange7d":2.478797,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.11619842712982,"volume24h":180866922.38083223,"volume7d":711953433.2742867,"volume30d":4987047220.050622,"marketCap":1279976794.466097,"percentChange1h":-2.67077875,"percentChange24h":-8.61462588,"percentChange7d":3.62860967,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1321,"name":"Ethereum Classic","symbol":"ETC","slug":"ethereum-classic","tags":["mineable","pow","ethash","platform","smart-contracts"],"cmcRank":52,"marketPairCount":289,"circulatingSupply":116313299,"totalSupply":116313299,"maxSupply":210700000,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2016-07-24T00:00:00.000Z","quotes":[{"name":"btc","price":0.00022805,"volume24h":21655.28593376,"volume7d":157715.59742451,"volume30d":1394882.04776212,"marketCap":26525.41842687,"percentChange1h":1.002409,"percentChange24h":2.56885,"percentChange7d":-2.227127,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00715553,"volume24h":679473.85549324,"volume7d":4948612.79510569,"volume30d":43766953.05943233,"marketCap":832283.09163013,"percentChange1h":0.037107,"percentChange24h":0.462847,"percentChange7d":-3.600197,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":10.87832300117774,"volume24h":1032982591.7780858,"volume7d":7523219369.616057,"volume30d":66537513165.59927,"marketCap":1265293635.8545637,"percentChange1h":0.15497834,"percentChange24h":-3.56607216,"percentChange7d":-2.51858977,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":52,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00022805,"volume24h":21655.28593376,"volume7d":157715.59742451,"volume30d":1394882.04776212,"marketCap":26525.41842687,"percentChange1h":1.002409,"percentChange24h":2.56885,"percentChange7d":-2.227127,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00715553,"volume24h":679473.85549324,"volume7d":4948612.79510569,"volume30d":43766953.05943233,"marketCap":832283.09163013,"percentChange1h":0.037107,"percentChange24h":0.462847,"percentChange7d":-3.600197,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":10.87832300117774,"volume24h":1032982591.7780858,"volume7d":7523219369.616057,"volume30d":66537513165.59927,"marketCap":1265293635.8545637,"percentChange1h":0.15497834,"percentChange24h":-3.56607216,"percentChange7d":-2.51858977,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":1817,"name":"Voyager Token","symbol":"VGX","slug":"voyager-token","tags":["asset-management","wallet"],"cmcRank":53,"marketPairCount":7,"circulatingSupply":222295208,"totalSupply":222295208.238,"maxSupply":222295209,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2017-07-18T00:00:00.000Z","quotes":[{"name":"btc","price":0.00011753,"volume24h":385.5450471,"volume7d":3937.89190943,"volume30d":22856.40404071,"marketCap":26126.01583108,"percentChange1h":-3.459535,"percentChange24h":-8.14165,"percentChange7d":-20.401634,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00368767,"volume24h":12097.17481553,"volume7d":123558.49774524,"volume30d":717161.11363102,"marketCap":819751.11110176,"percentChange1h":-4.382194,"percentChange24h":-10.027739,"percentChange7d":-21.51947,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":5.60624618859849,"volume24h":18390951.9006735,"volume7d":187842072.51717204,"volume30d":1090277337.2247803,"marketCap":1246241662.5937085,"percentChange1h":-4.26953019,"percentChange24h":-13.63594805,"percentChange7d":-20.63891787,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x5af2be193a6abca9c8817001f45744777db30756"},"rank":53,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00011753,"volume24h":385.5450471,"volume7d":3937.89190943,"volume30d":22856.40404071,"marketCap":26126.01583108,"percentChange1h":-3.459535,"percentChange24h":-8.14165,"percentChange7d":-20.401634,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00368767,"volume24h":12097.17481553,"volume7d":123558.49774524,"volume30d":717161.11363102,"marketCap":819751.11110176,"percentChange1h":-4.382194,"percentChange24h":-10.027739,"percentChange7d":-21.51947,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":5.60624618859849,"volume24h":18390951.9006735,"volume7d":187842072.51717204,"volume30d":1090277337.2247803,"marketCap":1246241662.5937085,"percentChange1h":-4.26953019,"percentChange24h":-13.63594805,"percentChange7d":-20.63891787,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":2694,"name":"Nexo","symbol":"NEXO","slug":"nexo","tags":["services","payments"],"cmcRank":54,"marketPairCount":43,"circulatingSupply":560000011,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2018-05-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00004578,"volume24h":166.38048794,"volume7d":1306.36240917,"volume30d":4749.40519094,"marketCap":25639.5765784,"percentChange1h":2.318834,"percentChange24h":1.889268,"percentChange7d":8.30192,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00143659,"volume24h":5220.48944387,"volume7d":40989.4889194,"volume30d":149021.198162,"marketCap":804488.19767299,"percentChange1h":1.34095,"percentChange24h":-0.202781,"percentChange7d":6.780986,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":2.18399627585013,"volume24h":7936544.83168332,"volume7d":62315022.3622377,"volume30d":226552209.8646607,"marketCap":1223037938.500032,"percentChange1h":1.460357,"percentChange24h":-4.20500556,"percentChange7d":7.9790702,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"NEXO-A84"},"rank":54,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00004578,"volume24h":166.38048794,"volume7d":1306.36240917,"volume30d":4749.40519094,"marketCap":25639.5765784,"percentChange1h":2.318834,"percentChange24h":1.889268,"percentChange7d":8.30192,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00143659,"volume24h":5220.48944387,"volume7d":40989.4889194,"volume30d":149021.198162,"marketCap":804488.19767299,"percentChange1h":1.34095,"percentChange24h":-0.202781,"percentChange7d":6.780986,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":2.18399627585013,"volume24h":7936544.83168332,"volume7d":62315022.3622377,"volume30d":226552209.8646607,"marketCap":1223037938.500032,"percentChange1h":1.460357,"percentChange24h":-4.20500556,"percentChange7d":7.9790702,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":4023,"name":"Bitcoin BEP2","symbol":"BTCB","slug":"bitcoin-bep2","tags":["binance-chain"],"cmcRank":55,"marketPairCount":20,"circulatingSupply":25295.75064831,"totalSupply":29501,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-06-18T00:00:00.000Z","quotes":[{"name":"btc","price":1.01079926,"volume24h":644.76400203,"volume7d":4243.24277959,"volume30d":19428.30399009,"marketCap":25568.9260679,"percentChange1h":1.241816,"percentChange24h":1.383713,"percentChange7d":0.404448,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":31.71565932,"volume24h":20230.63946981,"volume7d":133139.43487354,"volume30d":609598.25966857,"marketCap":802271.40982213,"percentChange1h":0.274226,"percentChange24h":-0.697957,"percentChange7d":-1.005578,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":48216.31281342276,"volume24h":30756000.72599958,"volume7d":202407667.9207892,"volume30d":926752935.5617812,"marketCap":1219667826.1092565,"percentChange1h":0.39237569,"percentChange24h":-4.68032271,"percentChange7d":0.1051397,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"BTCB-1DE"},"rank":55,"hasFilters":false,"quote":{"btc":{"name":"btc","price":1.01079926,"volume24h":644.76400203,"volume7d":4243.24277959,"volume30d":19428.30399009,"marketCap":25568.9260679,"percentChange1h":1.241816,"percentChange24h":1.383713,"percentChange7d":0.404448,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":31.71565932,"volume24h":20230.63946981,"volume7d":133139.43487354,"volume30d":609598.25966857,"marketCap":802271.40982213,"percentChange1h":0.274226,"percentChange24h":-0.697957,"percentChange7d":-1.005578,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":48216.31281342276,"volume24h":30756000.72599958,"volume7d":202407667.9207892,"volume30d":926752935.5617812,"marketCap":1219667826.1092565,"percentChange1h":0.39237569,"percentChange24h":-4.68032271,"percentChange7d":0.1051397,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":4157,"name":"THORChain","symbol":"RUNE","slug":"thorchain","tags":["cosmos-ecosystem","decentralized-exchange","defi"],"cmcRank":56,"marketPairCount":29,"circulatingSupply":238275761,"totalSupply":500000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2019-07-23T00:00:00.000Z","quotes":[{"name":"btc","price":0.00010709,"volume24h":1162.55989553,"volume7d":21023.47616628,"volume30d":36091.07381558,"marketCap":25516.02553716,"percentChange1h":-0.302588,"percentChange24h":-5.71929,"percentChange7d":12.672899,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00336002,"volume24h":36477.42435133,"volume7d":659649.67861761,"volume30d":1132422.87122798,"marketCap":800611.55976586,"percentChange1h":-1.255418,"percentChange24h":-7.655117,"percentChange7d":11.090582,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":5.10813354874194,"volume24h":55455473.44198561,"volume7d":1002844523.2662486,"volume30d":1721586640.9763432,"marketCap":1217144408.6161163,"percentChange1h":-1.13907048,"percentChange24h":-11.35847604,"percentChange7d":12.3370191,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"RUNE-B1A"},"rank":56,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00010709,"volume24h":1162.55989553,"volume7d":21023.47616628,"volume30d":36091.07381558,"marketCap":25516.02553716,"percentChange1h":-0.302588,"percentChange24h":-5.71929,"percentChange7d":12.672899,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00336002,"volume24h":36477.42435133,"volume7d":659649.67861761,"volume30d":1132422.87122798,"marketCap":800611.55976586,"percentChange1h":-1.255418,"percentChange24h":-7.655117,"percentChange7d":11.090582,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":5.10813354874194,"volume24h":55455473.44198561,"volume7d":1002844523.2662486,"volume30d":1721586640.9763432,"marketCap":1217144408.6161163,"percentChange1h":-1.13907048,"percentChange24h":-11.35847604,"percentChange7d":12.3370191,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":2577,"name":"Ravencoin","symbol":"RVN","slug":"ravencoin","tags":["mineable","platform","collectibles-nfts","crowdfunding"],"cmcRank":57,"marketPairCount":83,"circulatingSupply":8263870000,"totalSupply":8263870000,"maxSupply":21000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-03-10T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000305,"volume24h":2803.12477368,"volume7d":75608.42020569,"volume30d":163752.07991116,"marketCap":25230.46224846,"percentChange1h":0.165627,"percentChange24h":-3.197123,"percentChange7d":-14.576394,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0000958,"volume24h":87953.12161787,"volume7d":2372351.25604289,"volume30d":5138018.37678983,"marketCap":791651.49387928,"percentChange1h":-0.791678,"percentChange24h":-5.184735,"percentChange7d":-15.776037,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.14563669371684,"volume24h":133712346.38285078,"volume7d":3606610510.858049,"volume30d":7811166679.263879,"marketCap":1203522704.1057825,"percentChange1h":-0.67478399,"percentChange24h":-8.98716629,"percentChange7d":-14.83104274,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":57,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000305,"volume24h":2803.12477368,"volume7d":75608.42020569,"volume30d":163752.07991116,"marketCap":25230.46224846,"percentChange1h":0.165627,"percentChange24h":-3.197123,"percentChange7d":-14.576394,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0000958,"volume24h":87953.12161787,"volume7d":2372351.25604289,"volume30d":5138018.37678983,"marketCap":791651.49387928,"percentChange1h":-0.791678,"percentChange24h":-5.184735,"percentChange7d":-15.776037,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.14563669371684,"volume24h":133712346.38285078,"volume7d":3606610510.858049,"volume30d":7811166679.263879,"marketCap":1203522704.1057825,"percentChange1h":-0.67478399,"percentChange24h":-8.98716629,"percentChange7d":-14.83104274,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":3718,"name":"BitTorrent","symbol":"BTT","slug":"bittorrent","tags":["platform","distributed-computing","filesharing","ipfs"],"cmcRank":58,"marketPairCount":137,"circulatingSupply":989948781380.6676,"totalSupply":990000000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2019-01-31T00:00:00.000Z","quotes":[{"name":"btc","price":2e-8,"volume24h":4786.22429846,"volume7d":45282.84993166,"volume30d":187545.76447955,"marketCap":24602.04620412,"percentChange1h":0.851582,"percentChange24h":2.543383,"percentChange7d":-12.564124,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":7.8e-7,"volume24h":150176.46441062,"volume7d":1420831.5108334,"volume30d":5884588.36619242,"marketCap":771933.80121924,"percentChange1h":-0.112279,"percentChange24h":0.437902,"percentChange7d":-13.792026,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.00118546185646,"volume24h":228308524.56911814,"volume7d":2160045165.351106,"volume30d":8946153399.300371,"marketCap":1173546520.1758409,"percentChange1h":0.00541569,"percentChange24h":-3.59001623,"percentChange7d":-12.82477233,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1958,"name":"Tron","symbol":"TRX","slug":"tron","token_address":"1002000"},"rank":58,"hasFilters":false,"quote":{"btc":{"name":"btc","price":2e-8,"volume24h":4786.22429846,"volume7d":45282.84993166,"volume30d":187545.76447955,"marketCap":24602.04620412,"percentChange1h":0.851582,"percentChange24h":2.543383,"percentChange7d":-12.564124,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":7.8e-7,"volume24h":150176.46441062,"volume7d":1420831.5108334,"volume30d":5884588.36619242,"marketCap":771933.80121924,"percentChange1h":-0.112279,"percentChange24h":0.437902,"percentChange7d":-13.792026,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.00118546185646,"volume24h":228308524.56911814,"volume7d":2160045165.351106,"volume30d":8946153399.300371,"marketCap":1173546520.1758409,"percentChange1h":0.00541569,"percentChange24h":-3.59001623,"percentChange7d":-12.82477233,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":5864,"name":"yearn.finance","symbol":"YFI","slug":"yearn-finance","tags":["defi","yield-farming","yield-aggregator","yearn-partnerships","three-arrows-capital-portfolio","polychain-capital-portfolio"],"cmcRank":59,"marketPairCount":249,"circulatingSupply":36634.94063504,"totalSupply":36666,"maxSupply":36666,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2020-07-18T00:00:00.000Z","quotes":[{"name":"btc","price":0.66719615,"volume24h":4678.79697521,"volume7d":33728.58485723,"volume30d":166600.29321636,"marketCap":24442.69124568,"percentChange1h":1.393174,"percentChange24h":-0.37412,"percentChange7d":-1.188909,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":20.93448869,"volume24h":146805.73738644,"volume7d":1058295.49715384,"volume30d":5227386.23282609,"marketCap":766933.75050049,"percentChange1h":0.424137,"percentChange24h":-2.419696,"percentChange7d":-2.576559,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":31826.040417932152,"volume24h":223184114.98445672,"volume7d":1608893140.8898296,"volume30d":7947029801.595463,"marketCap":1165945101.359328,"percentChange1h":0.54246424,"percentChange24h":-6.33301543,"percentChange7d":-1.48346668,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e"},"rank":59,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.66719615,"volume24h":4678.79697521,"volume7d":33728.58485723,"volume30d":166600.29321636,"marketCap":24442.69124568,"percentChange1h":1.393174,"percentChange24h":-0.37412,"percentChange7d":-1.188909,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":20.93448869,"volume24h":146805.73738644,"volume7d":1058295.49715384,"volume30d":5227386.23282609,"marketCap":766933.75050049,"percentChange1h":0.424137,"percentChange24h":-2.419696,"percentChange7d":-2.576559,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":31826.040417932152,"volume24h":223184114.98445672,"volume7d":1608893140.8898296,"volume30d":7947029801.595463,"marketCap":1165945101.359328,"percentChange1h":0.54246424,"percentChange24h":-6.33301543,"percentChange7d":-1.48346668,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":4642,"name":"Hedera Hashgraph","symbol":"HBAR","slug":"hedera-hashgraph","tags":["dag","marketplace","enterprise-solutions","payments"],"cmcRank":60,"marketPairCount":44,"circulatingSupply":7514692413,"totalSupply":50000000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2019-09-17T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000324,"volume24h":12020.44276791,"volume7d":61785.79939728,"volume30d":257400.23315729,"marketCap":24327.77127803,"percentChange1h":-5.022472,"percentChange24h":28.514551,"percentChange7d":26.946919,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00010158,"volume24h":377163.18395578,"volume7d":1938641.46886003,"volume30d":8076398.96158678,"marketCap":763327.92817467,"percentChange1h":-5.930193,"percentChange24h":25.875816,"percentChange7d":25.164145,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.15442591925954,"volume24h":573389248.3664377,"volume7d":2947255251.753267,"volume30d":12278293659.316082,"marketCap":1160463283.830216,"percentChange1h":-5.81935262,"percentChange24h":20.82774567,"percentChange7d":26.56848816,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"rank":60,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000324,"volume24h":12020.44276791,"volume7d":61785.79939728,"volume30d":257400.23315729,"marketCap":24327.77127803,"percentChange1h":-5.022472,"percentChange24h":28.514551,"percentChange7d":26.946919,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00010158,"volume24h":377163.18395578,"volume7d":1938641.46886003,"volume30d":8076398.96158678,"marketCap":763327.92817467,"percentChange1h":-5.930193,"percentChange24h":25.875816,"percentChange7d":25.164145,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.15442591925954,"volume24h":573389248.3664377,"volume7d":2947255251.753267,"volume30d":12278293659.316082,"marketCap":1160463283.830216,"percentChange1h":-5.81935262,"percentChange24h":20.82774567,"percentChange7d":26.56848816,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":5617,"name":"UMA","symbol":"UMA","slug":"uma","tags":["defi","oracles","dao","coinbase-ventures-portfolio"],"cmcRank":61,"marketPairCount":82,"circulatingSupply":56166652.57836293,"totalSupply":101742283.46432933,"maxSupply":101172570,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2020-05-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00043273,"volume24h":874.76976326,"volume7d":5874.97607772,"volume30d":20210.59125825,"marketCap":24305.01500634,"percentChange1h":0.173244,"percentChange24h":-0.270925,"percentChange7d":1.311914,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0135777,"volume24h":27447.48721066,"volume7d":184338.02530564,"volume30d":634143.94093195,"marketCap":762613.90889493,"percentChange1h":-0.784134,"percentChange24h":-2.31862,"percentChange7d":-0.110856,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":20.64174611983589,"volume24h":41727545.87603807,"volume7d":280243264.1138795,"volume30d":964068957.7213174,"marketCap":1159377782.9235935,"percentChange1h":-0.6672309,"percentChange24h":-6.23599209,"percentChange7d":1.00990067,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828"},"rank":61,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00043273,"volume24h":874.76976326,"volume7d":5874.97607772,"volume30d":20210.59125825,"marketCap":24305.01500634,"percentChange1h":0.173244,"percentChange24h":-0.270925,"percentChange7d":1.311914,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0135777,"volume24h":27447.48721066,"volume7d":184338.02530564,"volume30d":634143.94093195,"marketCap":762613.90889493,"percentChange1h":-0.784134,"percentChange24h":-2.31862,"percentChange7d":-0.110856,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":20.64174611983589,"volume24h":41727545.87603807,"volume7d":280243264.1138795,"volume30d":964068957.7213174,"marketCap":1159377782.9235935,"percentChange1h":-0.6672309,"percentChange24h":-6.23599209,"percentChange7d":1.00990067,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":3513,"name":"Fantom","symbol":"FTM","slug":"fantom","tags":["platform","enterprise-solutions","defi","research","scaling","smart-contracts"],"cmcRank":62,"marketPairCount":44,"circulatingSupply":2545006273,"totalSupply":2545006273,"maxSupply":3175000000,"lastUpdated":"2021-03-05T00:10:05.000Z","dateAdded":"2018-10-29T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000925,"volume24h":4909.13208341,"volume7d":33336.37191966,"volume30d":228552.0723602,"marketCap":23536.19091068,"percentChange1h":-1.925773,"percentChange24h":-11.632326,"percentChange7d":-29.254372,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00029017,"volume24h":154032.91898544,"volume7d":1045989.10518664,"volume30d":7171235.61714294,"marketCap":738490.65907639,"percentChange1h":-2.86309,"percentChange24h":-13.446742,"percentChange7d":-30.247885,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.44113996174671,"volume24h":234171370.37188867,"volume7d":1590184122.776864,"volume30d":10902202482.345976,"marketCap":1122703969.916357,"percentChange1h":-2.74863572,"percentChange24h":-16.91783694,"percentChange7d":-29.4652663,"lastUpdated":"2021-03-05T00:10:05.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"FTM-A64"},"rank":62,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000925,"volume24h":4909.13208341,"volume7d":33336.37191966,"volume30d":228552.0723602,"marketCap":23536.19091068,"percentChange1h":-1.925773,"percentChange24h":-11.632326,"percentChange7d":-29.254372,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00029017,"volume24h":154032.91898544,"volume7d":1045989.10518664,"volume30d":7171235.61714294,"marketCap":738490.65907639,"percentChange1h":-2.86309,"percentChange24h":-13.446742,"percentChange7d":-30.247885,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.44113996174671,"volume24h":234171370.37188867,"volume7d":1590184122.776864,"volume30d":10902202482.345976,"marketCap":1122703969.916357,"percentChange1h":-2.74863572,"percentChange24h":-16.91783694,"percentChange7d":-29.4652663,"lastUpdated":"2021-03-05T00:10:05.000Z"}}},{"id":2099,"name":"ICON","symbol":"ICX","slug":"icon","tags":["platform","enterprise-solutions","interoperability"],"cmcRank":63,"marketPairCount":69,"circulatingSupply":592080158.5903833,"totalSupply":800460000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2017-10-27T00:00:00.000Z","quotes":[{"name":"btc","price":0.00003958,"volume24h":9867.11408378,"volume7d":42948.08619632,"volume30d":153456.88138514,"marketCap":23431.77733151,"percentChange1h":1.600773,"percentChange24h":12.257797,"percentChange7d":18.507581,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00124175,"volume24h":309598.59267663,"volume7d":1347574.06589492,"volume30d":4814987.85865479,"marketCap":735214.49373633,"percentChange1h":0.629752,"percentChange24h":9.952855,"percentChange7d":16.843325,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.88779053519966,"volume24h":470672939.199111,"volume7d":2048674190.989399,"volume30d":7320073609.017168,"marketCap":1117723319.4664392,"percentChange1h":0.74832095,"percentChange24h":5.5433525,"percentChange7d":18.15430808,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":63,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00003958,"volume24h":9867.11408378,"volume7d":42948.08619632,"volume30d":153456.88138514,"marketCap":23431.77733151,"percentChange1h":1.600773,"percentChange24h":12.257797,"percentChange7d":18.507581,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00124175,"volume24h":309598.59267663,"volume7d":1347574.06589492,"volume30d":4814987.85865479,"marketCap":735214.49373633,"percentChange1h":0.629752,"percentChange24h":9.952855,"percentChange7d":16.843325,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.88779053519966,"volume24h":470672939.199111,"volume7d":2048674190.989399,"volume30d":7320073609.017168,"marketCap":1117723319.4664392,"percentChange1h":0.74832095,"percentChange24h":5.5433525,"percentChange7d":18.15430808,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":2700,"name":"Celsius","symbol":"CEL","slug":"celsius","tags":[],"cmcRank":64,"marketPairCount":23,"circulatingSupply":238863519.826,"totalSupply":695658160.967,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2018-05-18T00:00:00.000Z","quotes":[{"name":"btc","price":0.00009443,"volume24h":109.12784016,"volume7d":742.06922838,"volume30d":3805.89766685,"marketCap":22555.72403596,"percentChange1h":1.363076,"percentChange24h":1.662357,"percentChange7d":-7.81781,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00296289,"volume24h":3424.08382509,"volume7d":23283.76735316,"volume30d":119416.93908897,"marketCap":707726.73337304,"percentChange1h":0.394327,"percentChange24h":-0.425033,"percentChange7d":-9.112367,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":4.50439040827662,"volume24h":5205526.23991765,"volume7d":35397574.39138498,"volume30d":181545792.00516638,"marketCap":1075934547.5914266,"percentChange1h":0.51261868,"percentChange24h":-4.41834491,"percentChange7d":-8.09260659,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d"},"rank":64,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00009443,"volume24h":109.12784016,"volume7d":742.06922838,"volume30d":3805.89766685,"marketCap":22555.72403596,"percentChange1h":1.363076,"percentChange24h":1.662357,"percentChange7d":-7.81781,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00296289,"volume24h":3424.08382509,"volume7d":23283.76735316,"volume30d":119416.93908897,"marketCap":707726.73337304,"percentChange1h":0.394327,"percentChange24h":-0.425033,"percentChange7d":-9.112367,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":4.50439040827662,"volume24h":5205526.23991765,"volume7d":35397574.39138498,"volume30d":181545792.00516638,"marketCap":1075934547.5914266,"percentChange1h":0.51261868,"percentChange24h":-4.41834491,"percentChange7d":-8.09260659,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":2130,"name":"Enjin Coin","symbol":"ENJ","slug":"enjin-coin","tags":["media","collectibles-nfts","gaming","ethereum"],"cmcRank":65,"marketPairCount":114,"circulatingSupply":834313756.7192237,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2017-11-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.0000265,"volume24h":40178.35398354,"volume7d":70584.88964604,"volume30d":86090.55059256,"marketCap":22112.89650173,"percentChange1h":-3.38174,"percentChange24h":10.318851,"percentChange7d":124.830862,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00083162,"volume24h":1260668.69641363,"volume7d":2214728.8774702,"volume30d":2701247.10020483,"marketCap":693832.21667525,"percentChange1h":-4.305141,"percentChange24h":8.05372,"percentChange7d":121.673459,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.26428594186808,"volume24h":1916554709.0101452,"volume7d":3366982198.7104907,"volume30d":4106620450.579458,"marketCap":1054811153.7272599,"percentChange1h":-4.19238706,"percentChange24h":3.72037981,"percentChange7d":124.16063682,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c"},"rank":65,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0000265,"volume24h":40178.35398354,"volume7d":70584.88964604,"volume30d":86090.55059256,"marketCap":22112.89650173,"percentChange1h":-3.38174,"percentChange24h":10.318851,"percentChange7d":124.830862,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00083162,"volume24h":1260668.69641363,"volume7d":2214728.8774702,"volume30d":2701247.10020483,"marketCap":693832.21667525,"percentChange1h":-4.305141,"percentChange24h":8.05372,"percentChange7d":121.673459,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.26428594186808,"volume24h":1916554709.0101452,"volume7d":3366982198.7104907,"volume30d":4106620450.579458,"marketCap":1054811153.7272599,"percentChange1h":-4.19238706,"percentChange24h":3.72037981,"percentChange7d":124.16063682,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":2135,"name":"Revain","symbol":"REV","slug":"revain","tags":["platform","reputation","smart-contracts"],"cmcRank":66,"marketPairCount":24,"circulatingSupply":85061485689.83401,"totalSupply":85061485689.83401,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2017-11-01T00:00:00.000Z","quotes":[{"name":"btc","price":2.6e-7,"volume24h":81.021776,"volume7d":577.91242345,"volume30d":2607.12476796,"marketCap":21958.48934539,"percentChange1h":0.842021,"percentChange24h":6.357183,"percentChange7d":0.055647,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0000081,"volume24h":2542.20510806,"volume7d":18133.04999521,"volume30d":81803.26610589,"marketCap":688987.41221722,"percentChange1h":-0.121749,"percentChange24h":4.173396,"percentChange7d":-1.349481,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.01231398373061,"volume24h":3864833.94485544,"volume7d":27567101.8530888,"volume30d":124362915.73961563,"marketCap":1047445750.8861313,"percentChange1h":-0.00406477,"percentChange24h":-0.00432887,"percentChange7d":-0.24262057,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9"},"rank":66,"hasFilters":false,"quote":{"btc":{"name":"btc","price":2.6e-7,"volume24h":81.021776,"volume7d":577.91242345,"volume30d":2607.12476796,"marketCap":21958.48934539,"percentChange1h":0.842021,"percentChange24h":6.357183,"percentChange7d":0.055647,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0000081,"volume24h":2542.20510806,"volume7d":18133.04999521,"volume30d":81803.26610589,"marketCap":688987.41221722,"percentChange1h":-0.121749,"percentChange24h":4.173396,"percentChange7d":-1.349481,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.01231398373061,"volume24h":3864833.94485544,"volume7d":27567101.8530888,"volume30d":124362915.73961563,"marketCap":1047445750.8861313,"percentChange1h":-0.00406477,"percentChange24h":-0.00432887,"percentChange7d":-0.24262057,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":1896,"name":"0x","symbol":"ZRX","slug":"0x","tags":["platform","decentralized-exchange","defi","dao","substrate","polkadot","dot-ecosystem","polychain-capital-portfolio"],"cmcRank":67,"marketPairCount":236,"circulatingSupply":760407231.6163942,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-08-16T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002833,"volume24h":3796.47704537,"volume7d":87448.42419271,"volume30d":146872.16688678,"marketCap":21541.55042952,"percentChange1h":-0.721947,"percentChange24h":-2.22362,"percentChange7d":-5.601199,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00088887,"volume24h":119121.35001134,"volume7d":2743852.84612706,"volume30d":4608380.50370192,"marketCap":675905.19785453,"percentChange1h":-1.670769,"percentChange24h":-4.231221,"percentChange7d":-6.926885,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.35132496354874,"volume24h":181096417.2881805,"volume7d":4171392617.2957582,"volume30d":7005974988.0412245,"marketCap":1027557274.5462222,"percentChange1h":-1.55491054,"percentChange24h":-8.07189142,"percentChange7d":-5.88260406,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xe41d2489571d322189246dafa5ebde1f4699f498"},"rank":67,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002833,"volume24h":3796.47704537,"volume7d":87448.42419271,"volume30d":146872.16688678,"marketCap":21541.55042952,"percentChange1h":-0.721947,"percentChange24h":-2.22362,"percentChange7d":-5.601199,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00088887,"volume24h":119121.35001134,"volume7d":2743852.84612706,"volume30d":4608380.50370192,"marketCap":675905.19785453,"percentChange1h":-1.670769,"percentChange24h":-4.231221,"percentChange7d":-6.926885,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.35132496354874,"volume24h":181096417.2881805,"volume7d":4171392617.2957582,"volume30d":7005974988.0412245,"marketCap":1027557274.5462222,"percentChange1h":-1.55491054,"percentChange24h":-8.07189142,"percentChange7d":-5.88260406,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":3897,"name":"OKB","symbol":"OKB","slug":"okb","tags":["marketplace","centralized-exchange","discount-token"],"cmcRank":68,"marketPairCount":63,"circulatingSupply":60000000,"totalSupply":300000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2019-04-30T00:00:00.000Z","quotes":[{"name":"btc","price":0.0003577,"volume24h":10612.2793043,"volume7d":61747.72943344,"volume30d":275437.61961823,"marketCap":21461.72833734,"percentChange1h":-0.59633,"percentChange24h":6.223406,"percentChange7d":-0.813826,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01122334,"volume24h":332979.50239587,"volume7d":1937446.95472691,"volume30d":8642354.66215482,"marketCap":673400.6350011,"percentChange1h":-1.546353,"percentChange24h":4.042365,"percentChange7d":-2.206743,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":17.06249444882343,"volume24h":506218196.0543205,"volume7d":2945439269.7325172,"volume30d":13138698193.909939,"marketCap":1023749666.9294058,"percentChange1h":-1.43034786,"percentChange24h":-0.13010466,"percentChange7d":-1.10950178,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x75231f58b43240c9718dd58b4967c5114342a86c"},"rank":68,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0003577,"volume24h":10612.2793043,"volume7d":61747.72943344,"volume30d":275437.61961823,"marketCap":21461.72833734,"percentChange1h":-0.59633,"percentChange24h":6.223406,"percentChange7d":-0.813826,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01122334,"volume24h":332979.50239587,"volume7d":1937446.95472691,"volume30d":8642354.66215482,"marketCap":673400.6350011,"percentChange1h":-1.546353,"percentChange24h":4.042365,"percentChange7d":-2.206743,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":17.06249444882343,"volume24h":506218196.0543205,"volume7d":2945439269.7325172,"volume30d":13138698193.909939,"marketCap":1023749666.9294058,"percentChange1h":-1.43034786,"percentChange24h":-0.13010466,"percentChange7d":-1.10950178,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":2539,"name":"Ren","symbol":"REN","slug":"ren","tags":["marketplace","defi","dot-ecosystem"],"cmcRank":69,"marketPairCount":123,"circulatingSupply":996163051.0169293,"totalSupply":999999632.80375,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-02-21T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002139,"volume24h":2611.5902364,"volume7d":22892.68568359,"volume30d":127690.21288581,"marketCap":21308.25205348,"percentChange1h":0.336528,"percentChange24h":-3.321187,"percentChange7d":-6.199253,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00067116,"volume24h":81943.37827373,"volume7d":718299.5159521,"volume30d":4006511.92155501,"marketCap":668585.03835475,"percentChange1h":-0.622411,"percentChange24h":-5.306253,"percentChange7d":-7.51654,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.02034367442369,"volume24h":124575923.83272421,"volume7d":1092008014.2340727,"volume30d":6090973236.510119,"marketCap":1016428667.7997274,"percentChange1h":-0.50531701,"percentChange24h":-9.10381022,"percentChange7d":-6.47887463,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x408e41876cccdc0f92210600ef50372656052a38"},"rank":69,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002139,"volume24h":2611.5902364,"volume7d":22892.68568359,"volume30d":127690.21288581,"marketCap":21308.25205348,"percentChange1h":0.336528,"percentChange24h":-3.321187,"percentChange7d":-6.199253,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00067116,"volume24h":81943.37827373,"volume7d":718299.5159521,"volume30d":4006511.92155501,"marketCap":668585.03835475,"percentChange1h":-0.622411,"percentChange24h":-5.306253,"percentChange7d":-7.51654,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.02034367442369,"volume24h":124575923.83272421,"volume7d":1092008014.2340727,"volume30d":6090973236.510119,"marketCap":1016428667.7997274,"percentChange1h":-0.50531701,"percentChange24h":-9.10381022,"percentChange7d":-6.47887463,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1697,"name":"Basic Attention Token","symbol":"BAT","slug":"basic-attention-token","tags":["marketing","content-creation","payments"],"cmcRank":70,"marketPairCount":264,"circulatingSupply":1489288105.6224163,"totalSupply":1500000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2017-06-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.0000142,"volume24h":13635.62964578,"volume7d":79521.12433894,"volume30d":289684.77002444,"marketCap":21152.93134335,"percentChange1h":0.565996,"percentChange24h":-6.899689,"percentChange7d":39.929114,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00044566,"volume24h":427842.60045495,"volume7d":2495119.44164707,"volume30d":9089384.8351071,"marketCap":663711.56948997,"percentChange1h":-0.395135,"percentChange24h":-8.811279,"percentChange7d":37.964025,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.67751812665339,"volume24h":650435560.865255,"volume7d":3793251096.846809,"volume30d":13818304013.804281,"marketCap":1009019687.3684756,"percentChange1h":-0.27777432,"percentChange24h":-12.4682724,"percentChange7d":39.51198341,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x0d8775f648430679a709e98d2b0cb6250d2887ef"},"rank":70,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0000142,"volume24h":13635.62964578,"volume7d":79521.12433894,"volume30d":289684.77002444,"marketCap":21152.93134335,"percentChange1h":0.565996,"percentChange24h":-6.899689,"percentChange7d":39.929114,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00044566,"volume24h":427842.60045495,"volume7d":2495119.44164707,"volume30d":9089384.8351071,"marketCap":663711.56948997,"percentChange1h":-0.395135,"percentChange24h":-8.811279,"percentChange7d":37.964025,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.67751812665339,"volume24h":650435560.865255,"volume7d":3793251096.846809,"volume30d":13818304013.804281,"marketCap":1009019687.3684756,"percentChange1h":-0.27777432,"percentChange24h":-12.4682724,"percentChange7d":39.51198341,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":1727,"name":"Bancor","symbol":"BNT","slug":"bancor","tags":["marketplace","decentralized-exchange","defi","payments","amm"],"cmcRank":71,"marketPairCount":159,"circulatingSupply":146820217.97636056,"totalSupply":146820217.97636056,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2017-06-18T00:00:00.000Z","quotes":[{"name":"btc","price":0.00013945,"volume24h":6005.07156656,"volume7d":26831.69213556,"volume30d":144874.5950485,"marketCap":20474.6856786,"percentChange1h":0.363907,"percentChange24h":7.243783,"percentChange7d":31.263137,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00437563,"volume24h":188420.00712078,"volume7d":841892.98449027,"volume30d":4545703.06583619,"marketCap":642430.38215291,"percentChange1h":-0.595293,"percentChange24h":5.041792,"percentChange7d":29.419748,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":6.65212588184079,"volume24h":286448971.8403926,"volume7d":1279903251.7406318,"volume30d":6910688463.491216,"marketCap":976666571.9780545,"percentChange1h":-0.47816737,"percentChange24h":0.82924062,"percentChange7d":30.8718389,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c"},"rank":71,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00013945,"volume24h":6005.07156656,"volume7d":26831.69213556,"volume30d":144874.5950485,"marketCap":20474.6856786,"percentChange1h":0.363907,"percentChange24h":7.243783,"percentChange7d":31.263137,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00437563,"volume24h":188420.00712078,"volume7d":841892.98449027,"volume30d":4545703.06583619,"marketCap":642430.38215291,"percentChange1h":-0.595293,"percentChange24h":5.041792,"percentChange7d":29.419748,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":6.65212588184079,"volume24h":286448971.8403926,"volume7d":1279903251.7406318,"volume30d":6910688463.491216,"marketCap":976666571.9780545,"percentChange1h":-0.47816737,"percentChange24h":0.82924062,"percentChange7d":30.8718389,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":1274,"name":"Waves","symbol":"WAVES","slug":"waves","tags":["lpos","platform","smart-contracts"],"cmcRank":72,"marketPairCount":156,"circulatingSupply":104489794,"totalSupply":104489794,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2016-06-02T00:00:00.000Z","quotes":[{"name":"btc","price":0.00019547,"volume24h":1739.19859669,"volume7d":13967.16158238,"volume30d":101263.2313736,"marketCap":20424.93305689,"percentChange1h":1.511816,"percentChange24h":-0.01806,"percentChange7d":-3.992019,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00613332,"volume24h":54570.50900074,"volume7d":438245.01600715,"volume30d":3177317.46658107,"marketCap":640869.30344915,"percentChange1h":0.541646,"percentChange24h":-2.070947,"percentChange7d":-5.340304,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":9.32429164751951,"volume24h":82961817.24507158,"volume7d":666250023.9104356,"volume30d":4830375157.184142,"marketCap":974293313.4452342,"percentChange1h":0.66011121,"percentChange24h":-5.99825215,"percentChange7d":-4.27822113,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"rank":72,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00019547,"volume24h":1739.19859669,"volume7d":13967.16158238,"volume30d":101263.2313736,"marketCap":20424.93305689,"percentChange1h":1.511816,"percentChange24h":-0.01806,"percentChange7d":-3.992019,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00613332,"volume24h":54570.50900074,"volume7d":438245.01600715,"volume30d":3177317.46658107,"marketCap":640869.30344915,"percentChange1h":0.541646,"percentChange24h":-2.070947,"percentChange7d":-5.340304,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":9.32429164751951,"volume24h":82961817.24507158,"volume7d":666250023.9104356,"volume30d":4830375157.184142,"marketCap":974293313.4452342,"percentChange1h":0.66011121,"percentChange24h":-5.99825215,"percentChange7d":-4.27822113,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":3890,"name":"Polygon","symbol":"MATIC","slug":"polygon","tags":["platform","enterprise-solutions","state-channels","coinbase-ventures-portfolio"],"cmcRank":73,"marketPairCount":95,"circulatingSupply":4966397110,"totalSupply":10000000000,"maxSupply":10000000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2019-04-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000409,"volume24h":5046.29851382,"volume7d":37457.66590581,"volume30d":175107.2842784,"marketCap":20314.00708808,"percentChange1h":-0.883501,"percentChange24h":-8.487058,"percentChange7d":6.636344,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00012834,"volume24h":158336.76441145,"volume7d":1175302.17558228,"volume30d":5494308.49990011,"marketCap":637388.80007753,"percentChange1h":-1.830779,"percentChange24h":-10.366055,"percentChange7d":5.138801,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.19511166604131,"volume24h":240714370.32226142,"volume7d":1786774689.9166424,"volume30d":8352823274.024584,"marketCap":969002014.3548471,"percentChange1h":-1.71510938,"percentChange24h":-13.96069601,"percentChange7d":6.3184589,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0"},"rank":73,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000409,"volume24h":5046.29851382,"volume7d":37457.66590581,"volume30d":175107.2842784,"marketCap":20314.00708808,"percentChange1h":-0.883501,"percentChange24h":-8.487058,"percentChange7d":6.636344,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00012834,"volume24h":158336.76441145,"volume7d":1175302.17558228,"volume30d":5494308.49990011,"marketCap":637388.80007753,"percentChange1h":-1.830779,"percentChange24h":-10.366055,"percentChange7d":5.138801,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.19511166604131,"volume24h":240714370.32226142,"volume7d":1786774689.9166424,"volume30d":8352823274.024584,"marketCap":969002014.3548471,"percentChange1h":-1.71510938,"percentChange24h":-13.96069601,"percentChange7d":6.3184589,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":2499,"name":"SwissBorg","symbol":"CHSB","slug":"swissborg","tags":["asset-management","staking"],"cmcRank":74,"marketPairCount":7,"circulatingSupply":939225238.4742761,"totalSupply":1000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-02-02T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002126,"volume24h":259.84609768,"volume7d":1580.33339233,"volume30d":4485.57508424,"marketCap":19963.60263014,"percentChange1h":2.08793,"percentChange24h":12.186909,"percentChange7d":11.12392,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00066693,"volume24h":8153.14239505,"volume7d":49585.82520374,"volume30d":140743.05026113,"marketCap":626394.22495429,"percentChange1h":1.112253,"percentChange24h":9.883423,"percentChange7d":9.563355,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.01390728320643,"volume24h":12394964.27166697,"volume7d":75383760.27321345,"volume30d":213967203.67990336,"marketCap":952287309.8603646,"percentChange1h":1.23139144,"percentChange24h":5.47670511,"percentChange7d":10.79265712,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xba9d4199fab4f26efe3551d490e3821486f135ba"},"rank":74,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002126,"volume24h":259.84609768,"volume7d":1580.33339233,"volume30d":4485.57508424,"marketCap":19963.60263014,"percentChange1h":2.08793,"percentChange24h":12.186909,"percentChange7d":11.12392,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00066693,"volume24h":8153.14239505,"volume7d":49585.82520374,"volume30d":140743.05026113,"marketCap":626394.22495429,"percentChange1h":1.112253,"percentChange24h":9.883423,"percentChange7d":9.563355,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.01390728320643,"volume24h":12394964.27166697,"volume7d":75383760.27321345,"volume30d":213967203.67990336,"marketCap":952287309.8603646,"percentChange1h":1.23139144,"percentChange24h":5.47670511,"percentChange7d":10.79265712,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":4558,"name":"Flow","symbol":"FLOW","slug":"flow","tags":["collectibles-nfts","coinbase-ventures-portfolio"],"cmcRank":75,"marketPairCount":15,"circulatingSupply":23301002,"totalSupply":1338178864.68,"maxSupply":1338178864,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2021-01-27T00:00:00.000Z","quotes":[{"name":"btc","price":0.00080003,"volume24h":3644.19200095,"volume7d":26467.85466997,"volume30d":213926.65412146,"marketCap":18641.58082762,"percentChange1h":-0.565186,"percentChange24h":24.834398,"percentChange7d":83.431435,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0251025,"volume24h":114343.13066171,"volume7d":830476.9243987,"volume30d":6712336.60517499,"marketCap":584913.39417917,"percentChange1h":-1.515506,"percentChange24h":22.271226,"percentChange7d":80.855422,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":38.16253550082173,"volume24h":173832241.6794237,"volume7d":1262547776.992116,"volume30d":10204552842.238852,"marketCap":889225316.0297182,"percentChange1h":-1.3994648,"percentChange24h":17.36771304,"percentChange7d":82.88462248,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":75,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00080003,"volume24h":3644.19200095,"volume7d":26467.85466997,"volume30d":213926.65412146,"marketCap":18641.58082762,"percentChange1h":-0.565186,"percentChange24h":24.834398,"percentChange7d":83.431435,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0251025,"volume24h":114343.13066171,"volume7d":830476.9243987,"volume30d":6712336.60517499,"marketCap":584913.39417917,"percentChange1h":-1.515506,"percentChange24h":22.271226,"percentChange7d":80.855422,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":38.16253550082173,"volume24h":173832241.6794237,"volume7d":1262547776.992116,"volume30d":10204552842.238852,"marketCap":889225316.0297182,"percentChange1h":-1.3994648,"percentChange24h":17.36771304,"percentChange7d":82.88462248,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":4847,"name":"Stacks","symbol":"STX","slug":"stacks","tags":[],"cmcRank":76,"marketPairCount":17,"circulatingSupply":739781894.219817,"totalSupply":973705260.219817,"maxSupply":1818000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2019-10-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002473,"volume24h":1585.42759874,"volume7d":6294.69002139,"volume30d":12685.16442033,"marketCap":18292.16612846,"percentChange1h":-0.813988,"percentChange24h":18.216787,"percentChange7d":13.642007,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00077584,"volume24h":49745.66516544,"volume7d":197507.31119671,"volume30d":398020.03088828,"marketCap":573949.87453187,"percentChange1h":-1.76193,"percentChange24h":15.789491,"percentChange7d":12.04608,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.1794798318393,"volume24h":75626759.9067719,"volume7d":300264112.5418894,"volume30d":605097252.4735425,"marketCap":872557824.1921486,"percentChange1h":-1.64617939,"percentChange24h":11.14591865,"percentChange7d":13.30323844,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"rank":76,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002473,"volume24h":1585.42759874,"volume7d":6294.69002139,"volume30d":12685.16442033,"marketCap":18292.16612846,"percentChange1h":-0.813988,"percentChange24h":18.216787,"percentChange7d":13.642007,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00077584,"volume24h":49745.66516544,"volume7d":197507.31119671,"volume30d":398020.03088828,"marketCap":573949.87453187,"percentChange1h":-1.76193,"percentChange24h":15.789491,"percentChange7d":12.04608,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.1794798318393,"volume24h":75626759.9067719,"volume7d":300264112.5418894,"volume30d":605097252.4735425,"marketCap":872557824.1921486,"percentChange1h":-1.64617939,"percentChange24h":11.14591865,"percentChange7d":13.30323844,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":5777,"name":"renBTC","symbol":"RENBTC","slug":"renbtc","tags":["defi","dot-ecosystem"],"cmcRank":77,"marketPairCount":21,"circulatingSupply":17192.98056265,"totalSupply":17192.98056265,"maxSupply":13698,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2020-06-28T00:00:00.000Z","quotes":[{"name":"btc","price":1.00473923,"volume24h":818.38486033,"volume7d":1778.36323317,"volume30d":12826.45590365,"marketCap":17274.4620654,"percentChange1h":0.891505,"percentChange24h":0.74886,"percentChange7d":0.564208,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":31.52551488,"volume24h":25678.30865983,"volume7d":55799.37047256,"volume30d":402453.30732763,"marketCap":542017.56453635,"percentChange1h":-0.072737,"percentChange24h":-1.319774,"percentChange7d":-0.848062,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":47927.24223783124,"volume24h":39037919.7337164,"volume7d":84830016.4374802,"volume30d":611837022.2959788,"marketCap":824012144.2164506,"percentChange1h":0.04500433,"percentChange24h":-5.27720282,"percentChange7d":0.26442412,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xeb4c2781e4eba804ce9a9803c67d0893436bb27d"},"rank":77,"hasFilters":false,"quote":{"btc":{"name":"btc","price":1.00473923,"volume24h":818.38486033,"volume7d":1778.36323317,"volume30d":12826.45590365,"marketCap":17274.4620654,"percentChange1h":0.891505,"percentChange24h":0.74886,"percentChange7d":0.564208,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":31.52551488,"volume24h":25678.30865983,"volume7d":55799.37047256,"volume30d":402453.30732763,"marketCap":542017.56453635,"percentChange1h":-0.072737,"percentChange24h":-1.319774,"percentChange7d":-0.848062,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":47927.24223783124,"volume24h":39037919.7337164,"volume7d":84830016.4374802,"volume30d":611837022.2959788,"marketCap":824012144.2164506,"percentChange1h":0.04500433,"percentChange24h":-5.27720282,"percentChange7d":0.26442412,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":109,"name":"DigiByte","symbol":"DGB","slug":"digibyte","tags":["mineable","pow","multiple-algorithms","medium-of-exchange","privacy","payments"],"cmcRank":78,"marketPairCount":105,"circulatingSupply":14092778090.719246,"totalSupply":14092778090.719246,"maxSupply":21000000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2014-02-06T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000119,"volume24h":1281.9131267,"volume7d":3940.96639042,"volume30d":18284.91813427,"marketCap":16832.98221548,"percentChange1h":0.693202,"percentChange24h":3.461543,"percentChange7d":0.551047,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00003748,"volume24h":40222.34835731,"volume7d":123654.96515988,"volume30d":573722.45557386,"marketCap":528165.333877,"percentChange1h":-0.269145,"percentChange24h":1.337211,"percentChange7d":-0.861038,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.05697620662931,"volume24h":61148762.85176894,"volume7d":187988728.87368748,"volume30d":872212086.3498993,"marketCap":802953036.4778327,"percentChange1h":-0.15163498,"percentChange24h":-2.7267729,"percentChange7d":0.25130202,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":78,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000119,"volume24h":1281.9131267,"volume7d":3940.96639042,"volume30d":18284.91813427,"marketCap":16832.98221548,"percentChange1h":0.693202,"percentChange24h":3.461543,"percentChange7d":0.551047,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00003748,"volume24h":40222.34835731,"volume7d":123654.96515988,"volume30d":573722.45557386,"marketCap":528165.333877,"percentChange1h":-0.269145,"percentChange24h":1.337211,"percentChange7d":-0.861038,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.05697620662931,"volume24h":61148762.85176894,"volume7d":187988728.87368748,"volume30d":872212086.3498993,"marketCap":802953036.4778327,"percentChange1h":-0.15163498,"percentChange24h":-2.7267729,"percentChange7d":0.25130202,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":2566,"name":"Ontology","symbol":"ONT","slug":"ontology","tags":["enterprise-solutions","identity","binance-smart-chain","dot-ecosystem"],"cmcRank":79,"marketPairCount":147,"circulatingSupply":807932992,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-03-08T00:00:00.000Z","quotes":[{"name":"btc","price":0.00001984,"volume24h":8787.29656208,"volume7d":64966.29182139,"volume30d":707625.54262061,"marketCap":16031.46123259,"percentChange1h":1.234739,"percentChange24h":-0.597357,"percentChange7d":-0.646795,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0006226,"volume24h":275717.36030936,"volume7d":2038435.18464785,"volume30d":22203034.268897,"marketCap":503016.15994453,"percentChange1h":0.267216,"percentChange24h":-2.638349,"percentChange7d":-2.042058,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.94651357363906,"volume24h":419164374.24044746,"volume7d":3098968478.6041164,"volume30d":33754570097.14323,"marketCap":764719543.518818,"percentChange1h":0.38535821,"percentChange24h":-6.54289885,"percentChange7d":-0.94296935,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":79,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00001984,"volume24h":8787.29656208,"volume7d":64966.29182139,"volume30d":707625.54262061,"marketCap":16031.46123259,"percentChange1h":1.234739,"percentChange24h":-0.597357,"percentChange7d":-0.646795,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0006226,"volume24h":275717.36030936,"volume7d":2038435.18464785,"volume30d":22203034.268897,"marketCap":503016.15994453,"percentChange1h":0.267216,"percentChange24h":-2.638349,"percentChange7d":-2.042058,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.94651357363906,"volume24h":419164374.24044746,"volume7d":3098968478.6041164,"volume30d":33754570097.14323,"marketCap":764719543.518818,"percentChange1h":0.38535821,"percentChange24h":-6.54289885,"percentChange7d":-0.94296935,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":4779,"name":"HUSD","symbol":"HUSD","slug":"husd","tags":["pow","medium-of-exchange","stablecoin","stablecoin-asset-backed"],"cmcRank":80,"marketPairCount":78,"circulatingSupply":747958265.039223,"totalSupply":747958265.039223,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-10-15T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002096,"volume24h":29312.07382225,"volume7d":160877.25829276,"volume30d":760516.45874778,"marketCap":15676.60318632,"percentChange1h":0.842843,"percentChange24h":6.375967,"percentChange7d":0.320642,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00065763,"volume24h":919719.45664597,"volume7d":5047815.6366884,"volume30d":23862582.64943701,"marketCap":491881.8454131,"percentChange1h":-0.120935,"percentChange24h":4.191794,"percentChange7d":-1.088207,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.99977823974803,"volume24h":1398220373.5347867,"volume7d":7674034309.118717,"volume30d":36277528962.22996,"marketCap":747792397.6259048,"percentChange1h":-0.00324951,"percentChange24h":0.0133305,"percentChange7d":0.02158402,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xdf574c24545e5ffecb9a659c229253d4111d87e1"},"rank":80,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002096,"volume24h":29312.07382225,"volume7d":160877.25829276,"volume30d":760516.45874778,"marketCap":15676.60318632,"percentChange1h":0.842843,"percentChange24h":6.375967,"percentChange7d":0.320642,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00065763,"volume24h":919719.45664597,"volume7d":5047815.6366884,"volume30d":23862582.64943701,"marketCap":491881.8454131,"percentChange1h":-0.120935,"percentChange24h":4.191794,"percentChange7d":-1.088207,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.99977823974803,"volume24h":1398220373.5347867,"volume7d":7674034309.118717,"volume30d":36277528962.22996,"marketCap":747792397.6259048,"percentChange1h":-0.00324951,"percentChange24h":0.0133305,"percentChange7d":0.02158402,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":7129,"name":"TerraUSD","symbol":"UST","slug":"terrausd","tags":[],"cmcRank":81,"marketPairCount":44,"circulatingSupply":746884792.813818,"totalSupply":746884792.813818,"maxSupply":0,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2020-09-21T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002094,"volume24h":854.2455442,"volume7d":1853.77628559,"volume30d":12651.56914556,"marketCap":15637.41058931,"percentChange1h":0.782255,"percentChange24h":6.172921,"percentChange7d":0.234462,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00065693,"volume24h":26803.5026288,"volume7d":58165.59171023,"volume30d":396965.91823685,"marketCap":490652.10662906,"percentChange1h":-0.180943,"percentChange24h":3.992917,"percentChange7d":-1.173177,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.99871207964124,"volume24h":40748516.50345469,"volume7d":88427307.67547476,"volume30d":603494718.3805927,"marketCap":745922864.6835048,"percentChange1h":-0.06332858,"percentChange24h":-0.1775697,"percentChange7d":-0.06433895,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":81,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002094,"volume24h":854.2455442,"volume7d":1853.77628559,"volume30d":12651.56914556,"marketCap":15637.41058931,"percentChange1h":0.782255,"percentChange24h":6.172921,"percentChange7d":0.234462,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00065693,"volume24h":26803.5026288,"volume7d":58165.59171023,"volume30d":396965.91823685,"marketCap":490652.10662906,"percentChange1h":-0.180943,"percentChange24h":3.992917,"percentChange7d":-1.173177,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.99871207964124,"volume24h":40748516.50345469,"volume7d":88427307.67547476,"volume30d":603494718.3805927,"marketCap":745922864.6835048,"percentChange1h":-0.06332858,"percentChange24h":-0.1775697,"percentChange7d":-0.06433895,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":3822,"name":"Theta Fuel","symbol":"TFUEL","slug":"theta-fuel","tags":["media","content-creation","payments"],"cmcRank":82,"marketPairCount":14,"circulatingSupply":5252590400,"totalSupply":5252590400,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-03-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000292,"volume24h":1203.65587401,"volume7d":7156.56333688,"volume30d":25522.32765959,"marketCap":15356.20289359,"percentChange1h":-0.464987,"percentChange24h":16.827848,"percentChange7d":73.169445,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00009173,"volume24h":37766.88518002,"volume7d":224550.14897813,"volume30d":800809.30028222,"marketCap":481828.7053684,"percentChange1h":-1.416265,"percentChange24h":14.429071,"percentChange7d":70.737546,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.13945670065525,"volume24h":57415799.91819102,"volume7d":341376482.70102364,"volume30d":1217445027.2630785,"marketCap":732508927.0774399,"percentChange1h":-1.30010665,"percentChange24h":9.8400573,"percentChange7d":72.65322252,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":82,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000292,"volume24h":1203.65587401,"volume7d":7156.56333688,"volume30d":25522.32765959,"marketCap":15356.20289359,"percentChange1h":-0.464987,"percentChange24h":16.827848,"percentChange7d":73.169445,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00009173,"volume24h":37766.88518002,"volume7d":224550.14897813,"volume30d":800809.30028222,"marketCap":481828.7053684,"percentChange1h":-1.416265,"percentChange24h":14.429071,"percentChange7d":70.737546,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.13945670065525,"volume24h":57415799.91819102,"volume7d":341376482.70102364,"volume30d":1217445027.2630785,"marketCap":732508927.0774399,"percentChange1h":-1.30010665,"percentChange24h":9.8400573,"percentChange7d":72.65322252,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":2405,"name":"IOST","symbol":"IOST","slug":"iostoken","tags":["hardware","iot"],"cmcRank":83,"marketPairCount":91,"circulatingSupply":16374175762,"totalSupply":22306434689,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2018-01-16T00:00:00.000Z","quotes":[{"name":"btc","price":9.3e-7,"volume24h":13851.28615588,"volume7d":101219.07738004,"volume30d":787479.78613444,"marketCap":15258.60332124,"percentChange1h":0.811752,"percentChange24h":11.173095,"percentChange7d":0.82214,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00002924,"volume24h":434609.21442758,"volume7d":3175932.05498545,"volume30d":24708605.92857492,"marketCap":478766.34184557,"percentChange1h":-0.151728,"percentChange24h":8.890425,"percentChange7d":-0.593752,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.04445129473026,"volume24h":660722629.8709378,"volume7d":4828268959.794568,"volume30d":37563711370.16687,"marketCap":727853312.7617416,"percentChange1h":-0.0340796,"percentChange24h":4.52353021,"percentChange7d":0.52158681,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":83,"hasFilters":false,"quote":{"btc":{"name":"btc","price":9.3e-7,"volume24h":13851.28615588,"volume7d":101219.07738004,"volume30d":787479.78613444,"marketCap":15258.60332124,"percentChange1h":0.811752,"percentChange24h":11.173095,"percentChange7d":0.82214,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00002924,"volume24h":434609.21442758,"volume7d":3175932.05498545,"volume30d":24708605.92857492,"marketCap":478766.34184557,"percentChange1h":-0.151728,"percentChange24h":8.890425,"percentChange7d":-0.593752,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.04445129473026,"volume24h":660722629.8709378,"volume7d":4828268959.794568,"volume30d":37563711370.16687,"marketCap":727853312.7617416,"percentChange1h":-0.0340796,"percentChange24h":4.52353021,"percentChange7d":0.52158681,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":8202,"name":"ZKSwap","symbol":"ZKS","slug":"zkswap","tags":["amm","layer-2"],"cmcRank":84,"marketPairCount":20,"circulatingSupply":197440000,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:02.000Z","dateAdded":"2021-01-07T00:00:00.000Z","quotes":[{"name":"btc","price":0.00007631,"volume24h":4402.8440099,"volume7d":16675.6186986,"volume30d":51278.60849558,"marketCap":15066.62941776,"percentChange1h":3.5731,"percentChange24h":44.833606,"percentChange7d":-8.672896,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00239436,"volume24h":138147.21281873,"volume7d":523227.7682471,"volume30d":1608959.30561291,"marketCap":472742.81259036,"percentChange1h":2.583229,"percentChange24h":41.859798,"percentChange7d":-9.955445,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":3.64007258877353,"volume24h":210020834.1950397,"volume7d":795446611.763743,"volume30d":2446049896.019903,"marketCap":718695931.9274458,"percentChange1h":2.70410043,"percentChange24h":36.1707137,"percentChange7d":-8.94514351,"lastUpdated":"2021-03-05T00:11:02.000Z"}],"rank":84,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00007631,"volume24h":4402.8440099,"volume7d":16675.6186986,"volume30d":51278.60849558,"marketCap":15066.62941776,"percentChange1h":3.5731,"percentChange24h":44.833606,"percentChange7d":-8.672896,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00239436,"volume24h":138147.21281873,"volume7d":523227.7682471,"volume30d":1608959.30561291,"marketCap":472742.81259036,"percentChange1h":2.583229,"percentChange24h":41.859798,"percentChange7d":-9.955445,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":3.64007258877353,"volume24h":210020834.1950397,"volume7d":795446611.763743,"volume30d":2446049896.019903,"marketCap":718695931.9274458,"percentChange1h":2.70410043,"percentChange24h":36.1707137,"percentChange7d":-8.94514351,"lastUpdated":"2021-03-05T00:11:02.000Z"}}},{"id":5567,"name":"Celo","symbol":"CELO","slug":"celo","tags":["pos","zero-knowledge-proofs","mobile","payments","smart-contracts","coinbase-ventures-portfolio","polychain-capital-portfolio"],"cmcRank":85,"marketPairCount":24,"circulatingSupply":184447717,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2020-05-22T00:00:00.000Z","quotes":[{"name":"btc","price":0.00007902,"volume24h":337.49338488,"volume7d":2665.48323351,"volume30d":93763.44400636,"marketCap":14575.50240775,"percentChange1h":-1.91562,"percentChange24h":-1.865177,"percentChange7d":-7.780332,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00247947,"volume24h":10589.46679945,"volume7d":83634.36876163,"volume30d":2941998.04141221,"marketCap":457332.8122768,"percentChange1h":-2.853034,"percentChange24h":-3.880138,"percentChange7d":-9.075416,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":3.76946165345755,"volume24h":16098831.13471453,"volume7d":127146683.13823548,"volume30d":4472626484.823228,"marketCap":695268596.2992903,"percentChange1h":-2.73856882,"percentChange24h":-7.73488807,"percentChange7d":-8.05524129,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":85,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00007902,"volume24h":337.49338488,"volume7d":2665.48323351,"volume30d":93763.44400636,"marketCap":14575.50240775,"percentChange1h":-1.91562,"percentChange24h":-1.865177,"percentChange7d":-7.780332,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00247947,"volume24h":10589.46679945,"volume7d":83634.36876163,"volume30d":2941998.04141221,"marketCap":457332.8122768,"percentChange1h":-2.853034,"percentChange24h":-3.880138,"percentChange7d":-9.075416,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":3.76946165345755,"volume24h":16098831.13471453,"volume7d":127146683.13823548,"volume30d":4472626484.823228,"marketCap":695268596.2992903,"percentChange1h":-2.73856882,"percentChange24h":-7.73488807,"percentChange7d":-8.05524129,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":3330,"name":"Paxos Standard","symbol":"PAX","slug":"paxos-standard","tags":["store-of-value","stablecoin","stablecoin-asset-backed"],"cmcRank":86,"marketPairCount":176,"circulatingSupply":675099791.33,"totalSupply":675099791.33,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2018-09-27T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002099,"volume24h":1640.31965338,"volume7d":30525.00323721,"volume30d":57800.38451001,"marketCap":14170.35000071,"percentChange1h":0.981244,"percentChange24h":6.309399,"percentChange7d":0.566881,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0006586,"volume24h":51468.00289465,"volume7d":957777.31598536,"volume30d":1813591.85152993,"marketCap":444620.42099679,"percentChange1h":0.016144,"percentChange24h":4.126593,"percentChange7d":-0.845426,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.00124805097699,"volume24h":78245175.43087499,"volume7d":1456078532.2558372,"volume30d":2757146277.3369803,"marketCap":675942350.2841351,"percentChange1h":0.13399006,"percentChange24h":-0.04925482,"percentChange7d":0.26708883,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x8e870d67f660d95d5be530380d0ec0bd388289e1"},"rank":86,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002099,"volume24h":1640.31965338,"volume7d":30525.00323721,"volume30d":57800.38451001,"marketCap":14170.35000071,"percentChange1h":0.981244,"percentChange24h":6.309399,"percentChange7d":0.566881,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0006586,"volume24h":51468.00289465,"volume7d":957777.31598536,"volume30d":1813591.85152993,"marketCap":444620.42099679,"percentChange1h":0.016144,"percentChange24h":4.126593,"percentChange7d":-0.845426,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.00124805097699,"volume24h":78245175.43087499,"volume7d":1456078532.2558372,"volume30d":2757146277.3369803,"marketCap":675942350.2841351,"percentChange1h":0.13399006,"percentChange24h":-0.04925482,"percentChange7d":0.26708883,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":1567,"name":"Nano","symbol":"NANO","slug":"nano","tags":["pow","blake2b","medium-of-exchange","payments"],"cmcRank":87,"marketPairCount":56,"circulatingSupply":133248297.197,"totalSupply":133248297.197,"maxSupply":133248298,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2017-03-06T00:00:00.000Z","quotes":[{"name":"btc","price":0.00010593,"volume24h":862.67526067,"volume7d":14049.70558796,"volume30d":71162.43800665,"marketCap":14114.86672033,"percentChange1h":0.333188,"percentChange24h":-1.341946,"percentChange7d":-3.71381,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00332372,"volume24h":27068.00026548,"volume7d":440834.98382788,"volume30d":2232850.50433379,"marketCap":442879.53248806,"percentChange1h":-0.625719,"percentChange24h":-3.367651,"percentChange7d":-5.066001,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":5.05294061358089,"volume24h":41150623.88704397,"volume7d":670187469.9953024,"volume30d":3394531934.3382077,"marketCap":673295732.5972179,"percentChange1h":-0.50862872,"percentChange24h":-7.24295298,"percentChange7d":-4.00084056,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":87,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00010593,"volume24h":862.67526067,"volume7d":14049.70558796,"volume30d":71162.43800665,"marketCap":14114.86672033,"percentChange1h":0.333188,"percentChange24h":-1.341946,"percentChange7d":-3.71381,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00332372,"volume24h":27068.00026548,"volume7d":440834.98382788,"volume30d":2232850.50433379,"marketCap":442879.53248806,"percentChange1h":-0.625719,"percentChange24h":-3.367651,"percentChange7d":-5.066001,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":5.05294061358089,"volume24h":41150623.88704397,"volume7d":670187469.9953024,"volume30d":3394531934.3382077,"marketCap":673295732.5972179,"percentChange1h":-0.50862872,"percentChange24h":-7.24295298,"percentChange7d":-4.00084056,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1934,"name":"Loopring","symbol":"LRC","slug":"loopring","tags":["marketplace","decentralized-exchange","defi"],"cmcRank":88,"marketPairCount":96,"circulatingSupply":1221125047.1699116,"totalSupply":1374378440.4424574,"maxSupply":1374513896,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-08-30T00:00:00.000Z","quotes":[{"name":"btc","price":0.00001119,"volume24h":1052.0687554,"volume7d":14174.53829892,"volume30d":50820.31629971,"marketCap":13665.87753292,"percentChange1h":-0.639147,"percentChange24h":-1.987525,"percentChange7d":-0.610544,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00035114,"volume24h":33010.56451821,"volume7d":444751.83644608,"volume30d":1594579.55711993,"marketCap":428791.68275126,"percentChange1h":-1.58876,"percentChange24h":-3.999974,"percentChange7d":-2.006316,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.53383428842539,"volume24h":50184916.19125732,"volume7d":676142137.0313503,"volume30d":2424188819.61894,"marketCap":651878420.6343706,"percentChange1h":-1.47280523,"percentChange24h":-7.84991805,"percentChange7d":-0.90682598,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xbbbbca6a901c926f240b89eacb641d8aec7aeafd"},"rank":88,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00001119,"volume24h":1052.0687554,"volume7d":14174.53829892,"volume30d":50820.31629971,"marketCap":13665.87753292,"percentChange1h":-0.639147,"percentChange24h":-1.987525,"percentChange7d":-0.610544,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00035114,"volume24h":33010.56451821,"volume7d":444751.83644608,"volume30d":1594579.55711993,"marketCap":428791.68275126,"percentChange1h":-1.58876,"percentChange24h":-3.999974,"percentChange7d":-2.006316,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.53383428842539,"volume24h":50184916.19125732,"volume7d":676142137.0313503,"volume30d":2424188819.61894,"marketCap":651878420.6343706,"percentChange1h":-1.47280523,"percentChange24h":-7.84991805,"percentChange7d":-0.90682598,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":1808,"name":"OMG Network","symbol":"OMG","slug":"omg","tags":["medium-of-exchange","payments","state-channels"],"cmcRank":89,"marketPairCount":271,"circulatingSupply":140245398.24513277,"totalSupply":140245398.24513277,"maxSupply":140245399,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2017-07-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00009621,"volume24h":6521.48982101,"volume7d":63714.38285281,"volume30d":352512.86478892,"marketCap":13493.20981255,"percentChange1h":0.253718,"percentChange24h":0.684604,"percentChange7d":-1.031575,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00301881,"volume24h":204623.56607988,"volume7d":1999154.27114667,"volume30d":11060730.21071216,"marketCap":423373.91999154,"percentChange1h":-0.704429,"percentChange24h":-1.382711,"percentChange7d":-2.421434,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":4.5893981227167,"volume24h":311082729.55496037,"volume7d":3039250949.36026,"volume30d":16815277979.64439,"marketCap":643641967.4258683,"percentChange1h":-0.58743163,"percentChange24h":-5.33761573,"percentChange7d":-1.32660239,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{},"rank":89,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00009621,"volume24h":6521.48982101,"volume7d":63714.38285281,"volume30d":352512.86478892,"marketCap":13493.20981255,"percentChange1h":0.253718,"percentChange24h":0.684604,"percentChange7d":-1.031575,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00301881,"volume24h":204623.56607988,"volume7d":1999154.27114667,"volume30d":11060730.21071216,"marketCap":423373.91999154,"percentChange1h":-0.704429,"percentChange24h":-1.382711,"percentChange7d":-2.421434,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":4.5893981227167,"volume24h":311082729.55496037,"volume7d":3039250949.36026,"volume30d":16815277979.64439,"marketCap":643641967.4258683,"percentChange1h":-0.58743163,"percentChange24h":-5.33761573,"percentChange7d":-1.32660239,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":1966,"name":"Decentraland","symbol":"MANA","slug":"decentraland","tags":["platform","collectibles-nfts","gaming","payments"],"cmcRank":90,"marketPairCount":121,"circulatingSupply":1574503348.8857312,"totalSupply":2194743627.320146,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-09-17T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000834,"volume24h":14117.35586055,"volume7d":39965.14952279,"volume30d":110218.75764814,"marketCap":13133.72371655,"percentChange1h":-1.137215,"percentChange24h":27.35416,"percentChange7d":48.287394,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00026173,"volume24h":442957.63377493,"volume7d":1253979.01993477,"volume30d":3458313.339106,"marketCap":412094.39200987,"percentChange1h":-2.082069,"percentChange24h":24.73925,"percentChange7d":46.204925,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.39789947640637,"volume24h":673414467.511129,"volume7d":1906384605.6405635,"volume30d":5257564286.43921,"marketCap":626494058.1217085,"percentChange1h":-1.966695,"percentChange24h":19.73676137,"percentChange7d":47.84534625,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x0f5d2fb29fb7d3cfee444a200298f468908cc942"},"rank":90,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000834,"volume24h":14117.35586055,"volume7d":39965.14952279,"volume30d":110218.75764814,"marketCap":13133.72371655,"percentChange1h":-1.137215,"percentChange24h":27.35416,"percentChange7d":48.287394,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00026173,"volume24h":442957.63377493,"volume7d":1253979.01993477,"volume30d":3458313.339106,"marketCap":412094.39200987,"percentChange1h":-2.082069,"percentChange24h":24.73925,"percentChange7d":46.204925,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.39789947640637,"volume24h":673414467.511129,"volume7d":1906384605.6405635,"volume30d":5257564286.43921,"marketCap":626494058.1217085,"percentChange1h":-1.966695,"percentChange24h":19.73676137,"percentChange7d":47.84534625,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":4066,"name":"Chiliz","symbol":"CHZ","slug":"chiliz","tags":["sports","content-creation","payments"],"cmcRank":91,"marketPairCount":87,"circulatingSupply":5441092180.146096,"totalSupply":8888888888,"maxSupply":8888888888,"lastUpdated":"2021-03-05T00:10:10.000Z","dateAdded":"2019-07-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000236,"volume24h":41550.96245184,"volume7d":117754.21767477,"volume30d":133728.53702682,"marketCap":12863.1686041,"percentChange1h":-8.253027,"percentChange24h":40.307708,"percentChange7d":120.018837,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00007418,"volume24h":1303736.77553711,"volume7d":3694752.05863479,"volume30d":4195975.28848358,"marketCap":403605.23486142,"percentChange1h":-9.129873,"percentChange24h":37.426828,"percentChange7d":116.92901,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.11276931927323,"volume24h":1982029746.2558024,"volume7d":5617014586.5809965,"volume30d":6379008395.235693,"marketCap":613588261.2579702,"percentChange1h":-9.02280293,"percentChange24h":31.91552163,"percentChange7d":119.36295582,"lastUpdated":"2021-03-05T00:10:10.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x3506424f91fd33084466f402d5d97f05f8e3b4af"},"rank":91,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000236,"volume24h":41550.96245184,"volume7d":117754.21767477,"volume30d":133728.53702682,"marketCap":12863.1686041,"percentChange1h":-8.253027,"percentChange24h":40.307708,"percentChange7d":120.018837,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00007418,"volume24h":1303736.77553711,"volume7d":3694752.05863479,"volume30d":4195975.28848358,"marketCap":403605.23486142,"percentChange1h":-9.129873,"percentChange24h":37.426828,"percentChange7d":116.92901,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.11276931927323,"volume24h":1982029746.2558024,"volume7d":5617014586.5809965,"volume30d":6379008395.235693,"marketCap":613588261.2579702,"percentChange1h":-9.02280293,"percentChange24h":31.91552163,"percentChange7d":119.36295582,"lastUpdated":"2021-03-05T00:10:10.000Z"}}},{"id":1684,"name":"Qtum","symbol":"QTUM","slug":"qtum","tags":["platform","smart-contracts"],"cmcRank":92,"marketPairCount":198,"circulatingSupply":98174128.7260568,"totalSupply":103207932,"maxSupply":107822406,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2017-05-24T00:00:00.000Z","quotes":[{"name":"btc","price":0.00011716,"volume24h":10802.20553599,"volume7d":2375087.08128832,"volume30d":2864441.43996459,"marketCap":11502.07889448,"percentChange1h":1.195455,"percentChange24h":10.653575,"percentChange7d":7.242067,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00367611,"volume24h":338938.78223654,"volume7d":74522663.02056345,"volume30d":89877043.18480305,"marketCap":360898.57767424,"percentChange1h":0.228308,"percentChange24h":8.381572,"percentChange7d":5.736017,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":5.5886687201592,"volume24h":515277900.5376931,"volume7d":113294445357.73157,"volume30d":136637223433.7012,"marketCap":548662682.3401964,"percentChange1h":0.34640369,"percentChange24h":4.03508431,"percentChange7d":6.92237571,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"rank":92,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00011716,"volume24h":10802.20553599,"volume7d":2375087.08128832,"volume30d":2864441.43996459,"marketCap":11502.07889448,"percentChange1h":1.195455,"percentChange24h":10.653575,"percentChange7d":7.242067,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00367611,"volume24h":338938.78223654,"volume7d":74522663.02056345,"volume30d":89877043.18480305,"marketCap":360898.57767424,"percentChange1h":0.228308,"percentChange24h":8.381572,"percentChange7d":5.736017,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":5.5886687201592,"volume24h":515277900.5376931,"volume7d":113294445357.73157,"volume30d":136637223433.7012,"marketCap":548662682.3401964,"percentChange1h":0.34640369,"percentChange24h":4.03508431,"percentChange7d":6.92237571,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":8104,"name":"1inch","symbol":"1INCH","slug":"1inch","tags":["defi","amm"],"cmcRank":93,"marketPairCount":124,"circulatingSupply":144003284.4391842,"totalSupply":1500000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2020-12-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00007861,"volume24h":2339.95276008,"volume7d":13978.17355355,"volume30d":143336.00276941,"marketCap":11320.04409709,"percentChange1h":0.044543,"percentChange24h":-2.932716,"percentChange7d":-7.12638,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00246652,"volume24h":73420.25999694,"volume7d":438590.53656632,"volume30d":4497426.94373339,"marketCap":355186.90589134,"percentChange1h":-0.911605,"percentChange24h":-4.925757,"percentChange7d":-8.430647,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":3.74977147674949,"volume24h":111618496.94070862,"volume7d":666775307.8780926,"volume30d":6837295803.379891,"marketCap":539979408.5482966,"percentChange1h":-0.7948524,"percentChange24h":-8.73857426,"percentChange7d":-7.40323843,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":93,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00007861,"volume24h":2339.95276008,"volume7d":13978.17355355,"volume30d":143336.00276941,"marketCap":11320.04409709,"percentChange1h":0.044543,"percentChange24h":-2.932716,"percentChange7d":-7.12638,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00246652,"volume24h":73420.25999694,"volume7d":438590.53656632,"volume30d":4497426.94373339,"marketCap":355186.90589134,"percentChange1h":-0.911605,"percentChange24h":-4.925757,"percentChange7d":-8.430647,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":3.74977147674949,"volume24h":111618496.94070862,"volume7d":666775307.8780926,"volume30d":6837295803.379891,"marketCap":539979408.5482966,"percentChange1h":-0.7948524,"percentChange24h":-8.73857426,"percentChange7d":-7.40323843,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":3964,"name":"Reserve Rights","symbol":"RSR","slug":"reserve-rights","tags":["store-of-value","defi","stablecoin","stablecoin-asset-backed","coinbase-ventures-portfolio"],"cmcRank":94,"marketPairCount":70,"circulatingSupply":9349999000,"totalSupply":100000000000,"maxSupply":100000000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-05-24T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000119,"volume24h":4646.10877181,"volume7d":32498.42721987,"volume30d":108101.01095442,"marketCap":11126.65010052,"percentChange1h":-0.23624,"percentChange24h":-3.541259,"percentChange7d":33.771145,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00003734,"volume24h":145780.08574344,"volume7d":1019697.07110324,"volume30d":3391865.19728302,"marketCap":349118.81864104,"percentChange1h":-1.189704,"percentChange24h":-5.521806,"percentChange7d":31.892535,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.05676517052084,"volume24h":221624849.2616094,"volume7d":1550213175.7109559,"volume30d":5156545280.035629,"marketCap":530754287.60468346,"percentChange1h":-1.07327885,"percentChange24h":-9.31071936,"percentChange7d":33.37237064,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x8762db106b2c2a0bccb3a80d1ed41273552616e8"},"rank":94,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000119,"volume24h":4646.10877181,"volume7d":32498.42721987,"volume30d":108101.01095442,"marketCap":11126.65010052,"percentChange1h":-0.23624,"percentChange24h":-3.541259,"percentChange7d":33.771145,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00003734,"volume24h":145780.08574344,"volume7d":1019697.07110324,"volume30d":3391865.19728302,"marketCap":349118.81864104,"percentChange1h":-1.189704,"percentChange24h":-5.521806,"percentChange7d":31.892535,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.05676517052084,"volume24h":221624849.2616094,"volume7d":1550213175.7109559,"volume30d":5156545280.035629,"marketCap":530754287.60468346,"percentChange1h":-1.07327885,"percentChange24h":-9.31071936,"percentChange7d":33.37237064,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":5268,"name":"Energy Web Token","symbol":"EWT","slug":"energy-web-token","tags":["energy","enterprise-solutions","identity","substrate","dot-ecosystem"],"cmcRank":95,"marketPairCount":12,"circulatingSupply":30062138,"totalSupply":48638535.4433,"maxSupply":100000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2020-03-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00033883,"volume24h":142.53443678,"volume7d":865.08930619,"volume30d":5650.31763991,"marketCap":10185.9892284,"percentChange1h":1.946904,"percentChange24h":0.980905,"percentChange7d":22.964383,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01063144,"volume24h":4472.27635764,"volume7d":27143.74532027,"volume30d":177288.95953135,"marketCap":319603.8784345,"percentChange1h":0.972575,"percentChange24h":-1.092494,"percentChange7d":21.237538,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":16.16264479892528,"volume24h":6799060.1635546,"volume7d":41265776.69591507,"volume30d":269526792.57599413,"marketCap":485883658.39027405,"percentChange1h":1.09154827,"percentChange24h":-5.05903773,"percentChange7d":22.59782392,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":95,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00033883,"volume24h":142.53443678,"volume7d":865.08930619,"volume30d":5650.31763991,"marketCap":10185.9892284,"percentChange1h":1.946904,"percentChange24h":0.980905,"percentChange7d":22.964383,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01063144,"volume24h":4472.27635764,"volume7d":27143.74532027,"volume30d":177288.95953135,"marketCap":319603.8784345,"percentChange1h":0.972575,"percentChange24h":-1.092494,"percentChange7d":21.237538,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":16.16264479892528,"volume24h":6799060.1635546,"volume7d":41265776.69591507,"volume30d":269526792.57599413,"marketCap":485883658.39027405,"percentChange1h":1.09154827,"percentChange24h":-5.05903773,"percentChange7d":22.59782392,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":6538,"name":"Curve DAO Token","symbol":"CRV","slug":"curve-dao-token","tags":["defi","dao","yield-farming","amm"],"cmcRank":96,"marketPairCount":99,"circulatingSupply":240133718.22039735,"totalSupply":1445720689.834492,"maxSupply":3303030299,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2020-08-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00004248,"volume24h":4517.45384896,"volume7d":31690.73226688,"volume30d":289644.00425613,"marketCap":10201.87203905,"percentChange1h":0.729265,"percentChange24h":-6.085192,"percentChange7d":-0.568272,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00133302,"volume24h":141743.30429797,"volume7d":994354.17766614,"volume30d":9088105.73522117,"marketCap":320102.23041277,"percentChange1h":-0.233427,"percentChange24h":-8.013505,"percentChange7d":-1.964638,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":2.02654292255367,"volume24h":215487858.2261532,"volume7d":1511685177.121793,"volume30d":13816359438.74133,"marketCap":486641287.1260435,"percentChange1h":-0.11587466,"percentChange24h":-11.70249164,"percentChange7d":-0.86468037,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xD533a949740bb3306d119CC777fa900bA034cd52"},"rank":96,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00004248,"volume24h":4517.45384896,"volume7d":31690.73226688,"volume30d":289644.00425613,"marketCap":10201.87203905,"percentChange1h":0.729265,"percentChange24h":-6.085192,"percentChange7d":-0.568272,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00133302,"volume24h":141743.30429797,"volume7d":994354.17766614,"volume30d":9088105.73522117,"marketCap":320102.23041277,"percentChange1h":-0.233427,"percentChange24h":-8.013505,"percentChange7d":-1.964638,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":2.02654292255367,"volume24h":215487858.2261532,"volume7d":1511685177.121793,"volume30d":13816359438.74133,"marketCap":486641287.1260435,"percentChange1h":-0.11587466,"percentChange24h":-11.70249164,"percentChange7d":-0.86468037,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":2083,"name":"Bitcoin Gold","symbol":"BTG","slug":"bitcoin-gold","tags":["mineable","medium-of-exchange","payments"],"cmcRank":97,"marketPairCount":72,"circulatingSupply":17513923.589,"totalSupply":17513923.589,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:11:02.000Z","dateAdded":"2017-10-23T00:00:00.000Z","quotes":[{"name":"btc","price":0.0005759,"volume24h":1164.89067353,"volume7d":58529.44842358,"volume30d":235652.23448534,"marketCap":10086.33754627,"percentChange1h":0.128753,"percentChange24h":3.759536,"percentChange7d":0.900757,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01807003,"volume24h":36550.55673681,"volume7d":1836467.55355342,"volume30d":7394016.07585176,"marketCap":316477.12624706,"percentChange1h":-0.828199,"percentChange24h":1.629085,"percentChange7d":-0.516239,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":27.47129468626626,"volume24h":55566654.29240623,"volume7d":2791923482.9261646,"volume30d":11240888560.95527,"marketCap":481130156.026169,"percentChange1h":-0.71134783,"percentChange24h":-2.44660362,"percentChange7d":0.59996981,"lastUpdated":"2021-03-05T00:11:02.000Z"}],"rank":97,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0005759,"volume24h":1164.89067353,"volume7d":58529.44842358,"volume30d":235652.23448534,"marketCap":10086.33754627,"percentChange1h":0.128753,"percentChange24h":3.759536,"percentChange7d":0.900757,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01807003,"volume24h":36550.55673681,"volume7d":1836467.55355342,"volume30d":7394016.07585176,"marketCap":316477.12624706,"percentChange1h":-0.828199,"percentChange24h":1.629085,"percentChange7d":-0.516239,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":27.47129468626626,"volume24h":55566654.29240623,"volume7d":2791923482.9261646,"volume30d":11240888560.95527,"marketCap":481130156.026169,"percentChange1h":-0.71134783,"percentChange24h":-2.44660362,"percentChange7d":0.59996981,"lastUpdated":"2021-03-05T00:11:02.000Z"}}},{"id":1042,"name":"Siacoin","symbol":"SC","slug":"siacoin","tags":["mineable","pow","blake2b","platform","distributed-computing","filesharing"],"cmcRank":98,"marketPairCount":50,"circulatingSupply":47091952992,"totalSupply":47091952992,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2015-08-26T00:00:00.000Z","quotes":[{"name":"btc","price":2.1e-7,"volume24h":384.8216722,"volume7d":2454.18944645,"volume30d":75683.15177073,"marketCap":10060.6184862,"percentChange1h":-0.687044,"percentChange24h":1.556129,"percentChange7d":-3.089356,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0000067,"volume24h":12074.47761663,"volume7d":77004.64313372,"volume30d":2374696.09437867,"marketCap":315670.14411048,"percentChange1h":-1.6362,"percentChange24h":-0.52908,"percentChange7d":-4.450317,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.01019077137686,"volume24h":18356446.06772478,"volume7d":117067721.14943062,"volume30d":3610175294.347242,"marketCap":479903326.6313102,"percentChange1h":-1.52030087,"percentChange24h":-4.51821935,"percentChange7d":-3.37824853,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"rank":98,"hasFilters":false,"quote":{"btc":{"name":"btc","price":2.1e-7,"volume24h":384.8216722,"volume7d":2454.18944645,"volume30d":75683.15177073,"marketCap":10060.6184862,"percentChange1h":-0.687044,"percentChange24h":1.556129,"percentChange7d":-3.089356,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0000067,"volume24h":12074.47761663,"volume7d":77004.64313372,"volume30d":2374696.09437867,"marketCap":315670.14411048,"percentChange1h":-1.6362,"percentChange24h":-0.52908,"percentChange7d":-4.450317,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.01019077137686,"volume24h":18356446.06772478,"volume7d":117067721.14943062,"volume30d":3610175294.347242,"marketCap":479903326.6313102,"percentChange1h":-1.52030087,"percentChange24h":-4.51821935,"percentChange7d":-3.37824853,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":5632,"name":"Arweave","symbol":"AR","slug":"arweave","tags":["distributed-computing","filesharing","ipfs","coinbase-ventures-portfolio"],"cmcRank":99,"marketPairCount":17,"circulatingSupply":33394701,"totalSupply":63190435,"maxSupply":66000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2020-05-27T00:00:00.000Z","quotes":[{"name":"btc","price":0.00030034,"volume24h":499.59506276,"volume7d":5437.50794221,"volume30d":11661.31466475,"marketCap":10029.8570885,"percentChange1h":-2.984325,"percentChange24h":-6.569592,"percentChange7d":45.631772,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0094238,"volume24h":15675.7008206,"volume7d":170611.669459,"volume30d":365894.88864826,"marketCap":314704.94948966,"percentChange1h":-3.911525,"percentChange24h":-8.487959,"percentChange7d":43.586598,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":14.32670326365027,"volume24h":23831271.69749195,"volume7d":259375519.86809576,"volume30d":556258415.7411876,"marketCap":478435971.8053249,"percentChange1h":-3.79830677,"percentChange24h":-12.15791931,"percentChange7d":45.19764142,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":99,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00030034,"volume24h":499.59506276,"volume7d":5437.50794221,"volume30d":11661.31466475,"marketCap":10029.8570885,"percentChange1h":-2.984325,"percentChange24h":-6.569592,"percentChange7d":45.631772,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0094238,"volume24h":15675.7008206,"volume7d":170611.669459,"volume30d":365894.88864826,"marketCap":314704.94948966,"percentChange1h":-3.911525,"percentChange24h":-8.487959,"percentChange7d":43.586598,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":14.32670326365027,"volume24h":23831271.69749195,"volume7d":259375519.86809576,"volume30d":556258415.7411876,"marketCap":478435971.8053249,"percentChange1h":-3.79830677,"percentChange24h":-12.15791931,"percentChange7d":45.19764142,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1698,"name":"Horizen","symbol":"ZEN","slug":"horizen","tags":["mineable","medium-of-exchange","content-creation","privacy"],"cmcRank":100,"marketPairCount":57,"circulatingSupply":10827768.75,"totalSupply":10827768.75,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-06-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00091145,"volume24h":638.39694065,"volume7d":9399.47943507,"volume30d":52480.77407586,"marketCap":9868.97319354,"percentChange1h":0.61079,"percentChange24h":-2.228862,"percentChange7d":-13.896048,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.02859841,"volume24h":20030.86137605,"volume7d":294925.70778859,"volume30d":1646679.43012534,"marketCap":309656.92561566,"percentChange1h":-0.35077,"percentChange24h":-4.236356,"percentChange7d":-15.105246,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":43.47725111137176,"volume24h":30452284.4146254,"volume7d":448366216.81681615,"volume30d":2503394607.175508,"marketCap":470761620.9196139,"percentChange1h":-0.2333561,"percentChange24h":-8.07681987,"percentChange7d":-14.15272615,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":100,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00091145,"volume24h":638.39694065,"volume7d":9399.47943507,"volume30d":52480.77407586,"marketCap":9868.97319354,"percentChange1h":0.61079,"percentChange24h":-2.228862,"percentChange7d":-13.896048,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.02859841,"volume24h":20030.86137605,"volume7d":294925.70778859,"volume30d":1646679.43012534,"marketCap":309656.92561566,"percentChange1h":-0.35077,"percentChange24h":-4.236356,"percentChange7d":-15.105246,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":43.47725111137176,"volume24h":30452284.4146254,"volume7d":448366216.81681615,"volume30d":2503394607.175508,"marketCap":470761620.9196139,"percentChange1h":-0.2333561,"percentChange24h":-8.07681987,"percentChange7d":-14.15272615,"lastUpdated":"2021-03-05T00:10:09.000Z"}}}],"filters":{},"tags":[],"cryptocurrencyType":"all","totalItems":"4245","pageSize":100},"listingHistorical":{"data":[],"page":1,"sort":"","sortDirection":""},"new":{"page":1,"sort":"","sortDirection":"","data":[]},"watchlist":{"page":1,"sort":"","sortDirection":"","data":[]},"map":{"data":[],"slugMap":{}},"info":{},"prices":{"aed":3.6729930000000146,"all":102.71297599997999,"amd":524.5416369991722,"ars":90.29580000002339,"aud":1.2965830000000023,"azn":1.7008049999999895,"bam":1.6246590000000012,"bch":0.0019958805974247145,"bdt":84.7682500000355,"bgn":1.6328580000000017,"bhd":0.37699399999999994,"bmd":1,"bob":6.902828000000214,"brl":5.67009999999987,"btc":0.000020960046906181663,"byn":2.6090679999999957,"cad":1.2682579999999972,"chf":0.9294969999999964,"clp":732.0995570026515,"cny":6.4700000000001125,"cop":3702.186114952257,"crc":612.2308430007099,"cup":25.750000000000448,"czk":21.9373490000011,"dkk":6.214294000000161,"dop":57.8310409999946,"dzd":133.44872599991913,"egp":15.694699999999912,"eth":0.0006574935876364934,"eur":0.8356999999999992,"gbp":0.7199029999999984,"gel":3.3249999999999793,"ghs":5.730902000000033,"gtq":7.687439000000158,"hkd":7.759879999999812,"hnl":24.282167999998887,"hrk":6.338500000000036,"huf":305.1210430004635,"idr":14273.220858014069,"ils":3.3090099999999545,"inr":73.13354999997465,"iqd":1459.726103999655,"irr":42104.99999721265,"isk":127.95000000002028,"jmd":150.1279440001093,"jod":0.7089999999999992,"jpy":107.93494329001044,"kes":109.6500000000442,"kgs":84.63333899997339,"khr":4067.6136440542227,"krw":1130.5220189942534,"kwd":0.30264899999999983,"kzt":420.1054249998331,"lbp":1516.448875995211,"lkr":195.68817700016487,"ltc":0.005607960582683114,"mad":8.961070999999937,"mdl":17.550109000001093,"mkd":51.45539200000258,"mmk":1409.5422900059252,"mnt":2851.457679967916,"mur":39.85000000000291,"mxn":21.150114000001444,"myr":4.057500000000019,"nad":15.29000000000116,"ngn":379.999999999772,"nio":34.95316399999902,"nok":8.598265000000206,"npr":116.42910899993228,"nzd":1.3932340000000019,"omr":0.38498399999999944,"pab":1,"pen":3.6767989999999706,"php":48.60650000000969,"pkr":157.22522200006188,"pln":3.8133569999999963,"qar":3.640999999999947,"ron":4.07770000000004,"rsd":97.61263199995791,"rub":74.5867000000147,"sar":3.7507919999999864,"sek":8.504228000000044,"sgd":1.3375979999999945,"ssp":130.25999999996972,"thb":30.43293900000434,"tnd":2.7514999999999756,"try":7.533424999999896,"ttd":6.782738999999922,"twd":27.830000999999978,"uah":27.723700999999572,"ugx":3655.8863479738857,"usd":1,"uyu":43.96178600000712,"uzs":10457.508005577149,"ves":1872262.4947965145,"vnd":23150.313774259826,"xrp":2.102636552389166,"zar":15.308380999999336},"quotesLatest":{"data":{"1":{"id":1,"name":"Bitcoin","symbol":"BTC","slug":"bitcoin","num_market_pairs":9800,"date_added":"2013-04-28T00:00:00.000Z","tags":["mineable","pow","sha-256","store-of-value","state-channels","coinbase-ventures-portfolio","three-arrows-capital-portfolio","polychain-capital-portfolio"],"max_supply":21000000,"circulating_supply":18644881,"total_supply":18644881,"is_market_cap_included_in_calc":1,"platform":null,"cmc_rank":1,"last_updated":"2021-03-05T00:11:02.000Z","quote":{"USD":{"price":47709.81689478347,"volume_24h":51173620738.75683,"volume_24h_reported":138297352179.09125,"volume_7d":7524897934762.189,"volume_30d":32217086287781.844,"volume_30d_reported":3.7141711872754026e+29,"percent_change_1h":-0.82105696,"percent_change_24h":-5.96423994,"percent_change_7d":-0.28004045,"percent_change_30d":34.11576615,"percent_change_60d":44.80877969,"percent_change_90d":153.71018139,"market_cap":889543858535.0273,"market_cap_by_total_supply":889543858535.0273,"last_updated":"2021-03-05T00:11:02.000Z"}},"noLazyLoad":true},"2":{"id":2,"name":"Litecoin","symbol":"LTC","slug":"litecoin","num_market_pairs":757,"date_added":"2013-04-28T00:00:00.000Z","tags":["mineable","pow","scrypt","medium-of-exchange","binance-chain"],"max_supply":84000000,"circulating_supply":66595487.80105277,"total_supply":66595487.80105277,"platform":{"id":2502,"name":"Heco","symbol":"HT","slug":"huobi-token","token_address":"0xecb56cf772b5c9a6907fb7d32387da2fcbfb63b4"},"is_market_cap_included_in_calc":1,"cmc_rank":8,"last_updated":"2021-03-05T00:12:02.000Z","quote":{"HT":{"price":11.495709304515039,"volume_24h":349405441.07164633,"volume_24h_reported":1212299905.739431,"volume_7d":3425037310.858147,"volume_30d":876635010264.9471,"volume_30d_reported":899202754621.9486,"percent_change_1h":-0.70180175,"percent_change_24h":-7.67527382,"percent_change_7d":10.01063415,"percent_change_30d":-44.30426775,"percent_change_60d":-64.15996254,"percent_change_90d":-44.82961929,"market_cap":765562368.7532802,"market_cap_by_total_supply":765562368.7532802,"last_updated":"2021-03-05T00:12:05.000Z"},"USD":{"price":178.31794379723559,"volume_24h":5419870853.814233,"volume_24h_reported":18804827151.651558,"volume_7d":53128136291.78692,"volume_30d":13598095458948.145,"volume_30d_reported":13948159440498.342,"percent_change_1h":-0.77617308,"percent_change_24h":-5.55832852,"percent_change_7d":-3.01431595,"percent_change_30d":24.25310165,"percent_change_60d":12.5668213,"percent_change_90d":121.32262666,"market_cap":11875170450.857616,"market_cap_by_total_supply":11875170450.857616,"last_updated":"2021-03-05T00:12:02.000Z"}},"noLazyLoad":true},"52":{"id":52,"name":"XRP","symbol":"XRP","slug":"xrp","num_market_pairs":674,"date_added":"2013-08-04T00:00:00.000Z","tags":["medium-of-exchange","enterprise-solutions","binance-chain"],"max_supply":100000000000,"circulating_supply":45404028640,"total_supply":99990831162,"is_market_cap_included_in_calc":1,"platform":null,"cmc_rank":7,"last_updated":"2021-03-05T00:12:02.000Z","quote":{"USD":{"price":0.47559336817565,"volume_24h":6004328912.023817,"volume_24h_reported":10856307316.255955,"volume_7d":74101068609.04135,"volume_30d":217761636379.78577,"volume_30d_reported":334246208177.9481,"percent_change_1h":1.03927733,"percent_change_24h":5.54688086,"percent_change_7d":6.03666945,"percent_change_30d":29.71566097,"percent_change_60d":110.29270508,"percent_change_90d":-14.50382606,"market_cap":21593854909.641277,"market_cap_by_total_supply":47554976179.018326,"last_updated":"2021-03-05T00:12:02.000Z"}}},"1027":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","num_market_pairs":6115,"date_added":"2015-08-07T00:00:00.000Z","tags":["mineable","pow","smart-contracts","coinbase-ventures-portfolio","three-arrows-capital-portfolio","polychain-capital-portfolio"],"max_supply":null,"circulating_supply":114917418.999,"total_supply":114917418.999,"platform":{"id":2502,"name":"Heco","symbol":"HT","slug":"huobi-token","token_address":"0x64ff637fb478863b7468bc97d30a5bf3a428a1fd"},"is_market_cap_included_in_calc":1,"cmc_rank":2,"last_updated":"2021-03-05T00:11:02.000Z","quote":{"HT":{"price":98.05036256162822,"volume_24h":1447566346.6764774,"volume_24h_reported":3303399365.0849853,"volume_7d":6165523759.697629,"volume_30d":268934653206.5771,"volume_30d_reported":430087626631.7735,"percent_change_1h":0.23630199,"percent_change_24h":-6.121322,"percent_change_7d":14.75217193,"percent_change_30d":-55.29797543,"percent_change_60d":-50.96637514,"percent_change_90d":-33.99415529,"market_cap":11267694597.498491,"market_cap_by_total_supply":11267694597.498491,"last_updated":"2021-03-05T00:12:05.000Z"},"USD":{"price":1520.9273805919872,"volume_24h":22454208575.719997,"volume_24h_reported":51241325499.74029,"volume_7d":95637727967.81442,"volume_30d":4171632485242.505,"volume_30d_reported":6671388359088.852,"percent_change_1h":0.16122805,"percent_change_24h":-3.9687456,"percent_change_7d":1.16583708,"percent_change_30d":-0.27305542,"percent_change_60d":54.0053995,"percent_change_90d":164.79039544,"market_cap":174781049062.54092,"market_cap_by_total_supply":174781049062.54092,"last_updated":"2021-03-05T00:11:02.000Z"}}},"1831":{"id":1831,"name":"Bitcoin Cash","symbol":"BCH","slug":"bitcoin-cash","num_market_pairs":587,"date_added":"2017-07-23T00:00:00.000Z","tags":["mineable","marketplace","enterprise-solutions","binance-chain"],"max_supply":21000000,"circulating_supply":18670925,"total_supply":18670925,"platform":{"id":2502,"name":"Heco","symbol":"HT","slug":"huobi-token","token_address":"0xef3cebd77e0c52cb6f60875d9306397b5caca375"},"is_market_cap_included_in_calc":1,"cmc_rank":10,"last_updated":"2021-03-05T00:11:08.000Z","quote":{"HT":{"price":32.30027123510608,"volume_24h":235365458.40391424,"volume_24h_reported":468778987.077654,"volume_7d":2087005380.8227878,"volume_30d":12604576984.817049,"volume_30d_reported":21332477835.088425,"percent_change_1h":-0.16907585,"percent_change_24h":-7.07288345,"percent_change_7d":12.16123714,"percent_change_30d":-47.74817946,"percent_change_60d":-61.2899595,"percent_change_90d":-55.81677802,"market_cap":603075941.710323,"market_cap_by_total_supply":603075941.710323,"last_updated":"2021-03-05T00:12:05.000Z"},"USD":{"price":501.0319762065428,"volume_24h":3650917352.876672,"volume_24h_reported":7271556965.885243,"volume_7d":32372992248.15304,"volume_30d":195518361749.4366,"volume_30d_reported":330902903238.77905,"percent_change_1h":-0.24384618,"percent_change_24h":-4.94212573,"percent_change_7d":-1.11833831,"percent_change_30d":16.56998674,"percent_change_60d":21.58096141,"percent_change_90d":77.24631617,"market_cap":9354730450.354145,"market_cap_by_total_supply":9354730450.354145,"last_updated":"2021-03-05T00:11:08.000Z"}}}}},"quotesHistorical":{"loading":false},"ohlcvHistorical":{},"related":{"data":{}},"marketPairsLatest":{"data":{}},"pricePerformanceStatsLatest":{"data":{}},"topDerivatives":[],"yieldFarmingRankingLatest":{"filterKey":""},"gainersLosers":{"gainers":[],"losers":[],"sortGainers":"","sortDirectionGainers":"","sortLosers":"","sortDirectionLosers":""},"trendingCoins":{"sort":"","sortDirection":"","data":[]},"mostViewed":{"sort":"","sortDirection":"","data":[]},"spotlight":{"data":{}}},"exchange":{"listingLatest":{"page":1,"sort":"","sortDirection":"","data":[]},"map":{"data":[]},"info":{},"quotesLatest":{},"marketPairsLatest":{"data":{}},"related":{"data":[]},"fiatOnRamp":{"activeSection":null,"selectedCrypto":null,"availableCurrencies":["USD","EUR","GBP","NGN","RUB"],"selectedCurrency":"USD","orderBy":"price","order":"asc","tableData":[]}},"globalMetrics":{"quotesHistorical":{},"trendingSearch":[]},"watchlist":{"loaded":false,"data":[],"onboarding":[],"import":null,"counts":{"isLoading":false,"data":{}}},"user":{"data":{},"isLoading":true,"isLoaded":false,"isHeadlineLoading":true},"router":{"statusCode":{"404":false,"429":false}},"news":{"loading":false,"slugs":{"isLoading":false,"data":{}},"articles":{"is404":false,"data":{}},"data":{},"assets":{"isLoading":false,"data":[]}},"newsEditor":{"loading":false,"isDeleting":false,"data":{"slug":null,"cover":null,"ownerAsset":{},"title":"","subtitle":"","author":"","content":null,"assets":[],"status":"PUBLISHED","visibility":true}},"eventEditor":{"loading":false,"isDeleting":false,"data":{"slug":null,"title":"","description":null,"startDate":"","startTime":"","ownerAsset":{},"type":""}},"events":{"isLoading":false,"data":[],"event":null},"podcasts":{"loading":false,"data":[],"podcast":null}},"initialProps":{"initialI18nStore":{"en":{"common":{}}},"initialLanguage":"en","i18nServerInstance":null,"pageProps":{"reqLang":"en","cryptocurrencyType":"all","gaPageviewProps":{"section":"Market Cap","subSection":"Cryptocurrencies"},"listingParams":{"cryptocurrencyType":"all","page":1,"pageSize":100,"sort":"market_cap","tags":[],"volume24hRange":"0~","filters":{},"concat":false,"aux":["ath","atl","high24h","low24h","num_market_pairs","cmc_rank","date_added","tags","platform","max_supply","circulating_supply","total_supply","volume_7d","volume_30d"],"convert":"USD,btc,eth"},"view":"","pageSize":100,"currentPage":1,"homepageColumns":"Classic","globalMetrics":[8697,35174,1475809405041.5144,-3.71767,135046987298.84,110697420159.10931,7.708054528069,5.619202,12183562234.601456,5.889254710685,67294721606.317444,152594587005.76025,10.705550194741,60.619901465059,-0.480876594941,11.906321188232,{"lastBlock":"11974965","slowPrice":"76","slowConfirmationTime":"478","standardPrice":"90","standardConfirmationTime":"149","fastPrice":"103","fastConfirmationTime":"45"}],"promotionCards":[{"platform":"Take a quiz!","title":"Learn and earn $CKB","image":"https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/603dd5aeedc95900191eadf4/1614666484628.png","link":"https://coinmarketcap.com/earn/"},{"platform":"Portfolio \xf0\x9f\x94\xa5","title":"Track your trades in one place, not all over the place","image":"https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/60386d82bc6ea500157b34fb/1614319262237.png","link":"https://coinmarketcap.com/portfolio-tracker/"},{"platform":"Alexandria Learning Corner","title":"Learn about yield farming! \xf0\x9f\x91\xa8\xe2\x80\x8d\xf0\x9f\x8c\xbe","image":"https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/6038d61e3e919b0013d44cf2/1614337604165.png","link":"https://coinmarketcap.com/alexandria/article/what-is-yield-farming"}],"namespacesRequired":["common"]}}},"page":"/beta","query":{"cryptocurrencyType":""},"buildId":"29bbdee3","assetPrefix":"https://s2.coinmarketcap.com","isFallback":false,"customServer":true,"gip":true,"appGip":true}</script><script nomodule="" src="https://s2.coinmarketcap.com/_next/static/chunks/polyfills-e8eca63c205eee47a573.js"></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/main-8c2f1e2471828b81026a.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/webpack-be8a316bce581625c5e2.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/framework.79429a698019810fd19a.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/1e19085d46be8ae3ff9c236da791e2000f4cc35c.23f981a62f3f56e06112.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/1c11b056ac55245ba2869cf57b017ab03e18a446.02ed88a4d38c623d113c.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/4365bb2cb90d6d43b6fddc97ef52a8b566ce4201.c0a603978ddfb09d775c.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/f9959dec42fa8e5dd928304f52bcef5e4ead81f9.f2d9050ac9d6f7d2d952.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/cc3f29cc0b0d7942a12bd812058ff8235d49ca65.ccb58c77657ffd1100b6.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/cc7dcbae8818cfb099ac311f79b30db63cc819c9.02d3b7ae70a6953b6d6c.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/83f2e50000c4e2c363ec472406c2edda6f1c16ce.4e6698faeb878b7c9fbc.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/7b3896592f6bd0b298c19dd4d8354f9d91ce480e.31b014859fab358272ba.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/30e309cc7abdea375b7bd984e366392b9da944f2.34c7bdff426bd3314c34.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/655c323a305da81d43026031816a85481c1b9680.99082661aeb7fde288ba.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/40cbab0505061a40cd620fc62d1432b9a5bf5fe3.36806490989603726c11.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/a2bba0fe3111882f540e8cbf7e3f49e7588aa2a7.66ed31d5df5a3a5b4c01.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/ff4c89236e3083d754c8c98a83cf29ec81011835.33965c9745169d21431f.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/e5f9db3ed3e15d395c2ab0c90e7af622747a347b.86fa3a0df25aee41ea77.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/70794292e8bd506f7e17b958757c7918261d0773.d095fe82ba43c673422c.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/36aac51ccbe5da6bcf06fecba089bd8f49d2f980.252c7850b2f3588aab2f.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/950ebb8a0f19bd14810d16d95e94cbf78936c50b.6f07e361ad537c7aaa50.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/styles.c55cd3c43b63374a73d7.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/pages/_app-f801038298b6b2d536bd.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/52008dc0e9812e50b03c486092cb752124e99f7a.9ed0e143932b36e29cea.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/292200965c05c5b5cc37f5c0702b676604da0ca4.71bf21e2045803f26945.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/ddcb9a40acf772ca37174d6c128e70e6a1c92357.cd8d8cbbbf76bc1e02c4.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/0cf15cf80c9426c9bbc1acb37060dddab236e82e.0d127d0bc685c1834b11.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/9e5be863560300e96a85facda4ef903e230fdedb.ad0fc8f5a6582d4fb424.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/8521dc3d9b9ece6fd49907ddd03d2a4841e98f4b.8e61b096f19fe2b16a84.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/chunks/pages/beta-0ecd66a250ce4678c31a.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/29bbdee3/_buildManifest.js" async=""></script><script src="https://s2.coinmarketcap.com/_next/static/29bbdee3/_ssgManifest.js" async=""></script></body></html>'

Ahora tenemos que procesar la página web como HTML

In [35]:
soup = bs.BeautifulSoup(source, 'html.parser')

soup
Out[35]:
<!DOCTYPE html>
<html lang="en"><head><meta charset="utf-8"/><meta content="ie=edge" http-equiv="x-ua-compatible"/><meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no" name="viewport"/><link crossorigin="anonymous" href="https://s2.coinmarketcap.com" rel="preconnect"/><link crossorigin="anonymous" href="https://s2.coinmarketcap.com" rel="dns-prefetch"/><link crossorigin="anonymous" href="https://s3.coinmarketcap.com" rel="preconnect"/><link crossorigin="anonymous" href="https://s3.coinmarketcap.com" rel="dns-prefetch"/><link href="//www.googletagmanager.com" rel="preconnect"/><link as="font" crossorigin="anonymous" href="https://s2.coinmarketcap.com/static/cloud/fonts/cmc-v2/CMC-V2.woff" rel="preload" type="font/woff2"/><meta content="EDc1reqlQ-zAgeRrrgAxRXNK-Zs9JgpE9a0wdaoSO9A" name="google-site-verification"/><script charset="UTF-8" src="https://cdn.jsdelivr.net/npm/sa-sdk-javascript@1.15.26/sensorsdata.min.js"></script><script charset="UTF-8">var projectName = location.host === 'coinmarketcap.com' ? 'cmc' : 'default';var sensors = window['sensorsDataAnalytic201505'];sensors.init({show_log:false,send_type: 'beacon', use_client_time: true, datasend_timeout: 10000, app_js_bridge: true,server_url: 'https://sensors.binance.cloud/sa?project=' + projectName,heatmap:{scroll_notice_map:'not_collect'}});sensors.registerPage({tag:location.host.indexOf('cn-test') > -1?'cn':'com'});sensors.quick('autoTrack');</script><meta content="https://s2.coinmarketcap.com/static/cloud/img/splash_600x315_1.png?_=29bbdee" property="og:image"/><meta content="image/png" property="og:image:type"/><meta content="600" property="og:image:width"/><meta content="315" property="og:image:height"/><meta content="CoinMarketCap" property="og:site_name"/><meta content="website" property="og:type"/><meta content="summary_large_image" name="twitter:card"/><link href="/apple-touch-icon.png" rel="apple-touch-icon"/><link href="/favicon.ico" rel="shortcut icon" type="image/x-icon"/><meta content="https://coinmarketcap.com/" property="og:url"/><link href="https://coinmarketcap.com/" rel="canonical"/><link href="https://coinmarketcap.com/de/" hreflang="de" rel="alternate"/><link href="https://coinmarketcap.com/" hreflang="en" rel="alternate"/><link href="https://coinmarketcap.com/es/" hreflang="es" rel="alternate"/><link href="https://coinmarketcap.com/fil/" hreflang="fil" rel="alternate"/><link href="https://coinmarketcap.com/fr/" hreflang="fr" rel="alternate"/><link href="https://coinmarketcap.com/hi/" hreflang="hi" rel="alternate"/><link href="https://coinmarketcap.com/it/" hreflang="it" rel="alternate"/><link href="https://coinmarketcap.com/ja/" hreflang="ja" rel="alternate"/><link href="https://coinmarketcap.com/ko/" hreflang="ko" rel="alternate"/><link href="https://coinmarketcap.com/pt-br/" hreflang="pt-br" rel="alternate"/><link href="https://coinmarketcap.com/ru/" hreflang="ru" rel="alternate"/><link href="https://coinmarketcap.com/tr/" hreflang="tr" rel="alternate"/><link href="https://coinmarketcap.com/vi/" hreflang="vi" rel="alternate"/><link href="https://coinmarketcap.com/zh/" hreflang="zh" rel="alternate"/><link href="https://coinmarketcap.com/zh-tw/" hreflang="zh-tw" rel="alternate"/><link href="/manifest.json" rel="manifest"/><script>
    window.dataLayer = window.dataLayer || [];
    window.dataLayer.push({ "appType": "nextjs" });
    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-MNVXW26');
  </script><title>Cryptocurrency Prices, Charts And Market Capitalizations | CoinMarketCap</title><meta content="Cryptocurrency Prices, Charts And Market Capitalizations | CoinMarketCap" property="og:title"/><meta content="Top cryptocurrency prices and charts, listed by market capitalization. Free access to current and historic data for Bitcoin and thousands of altcoins." name="description"/><meta content="Top cryptocurrency prices and charts, listed by market capitalization. Free access to current and historic data for Bitcoin and thousands of altcoins." property="og:description"/><script type="application/ld+json">{"@context":"http://schema.org","@type":"Organization","name":"CoinMarketCap","url":"https://coinmarketcap.com","logo":"https://coinmarketcap.com/apple-touch-icon.png","sameAs":["https://www.facebook.com/CoinMarketCap/","https://twitter.com/coinmarketcap"]}</script><script type="application/ld+json">{"@context":"http://schema.org","@type":"Table","about":"Cryptocurrency Prices Today"}</script><meta content="46" name="next-head-count"/><link as="style" href="https://s2.coinmarketcap.com/_next/static/css/styles.7f224781.chunk.css" rel="preload"/><link data-n-g="" href="https://s2.coinmarketcap.com/_next/static/css/styles.7f224781.chunk.css" rel="stylesheet"/><noscript data-n-css=""></noscript><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/main-8c2f1e2471828b81026a.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/webpack-be8a316bce581625c5e2.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/framework.79429a698019810fd19a.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/1e19085d46be8ae3ff9c236da791e2000f4cc35c.23f981a62f3f56e06112.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/1c11b056ac55245ba2869cf57b017ab03e18a446.02ed88a4d38c623d113c.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/4365bb2cb90d6d43b6fddc97ef52a8b566ce4201.c0a603978ddfb09d775c.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/f9959dec42fa8e5dd928304f52bcef5e4ead81f9.f2d9050ac9d6f7d2d952.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/cc3f29cc0b0d7942a12bd812058ff8235d49ca65.ccb58c77657ffd1100b6.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/cc7dcbae8818cfb099ac311f79b30db63cc819c9.02d3b7ae70a6953b6d6c.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/83f2e50000c4e2c363ec472406c2edda6f1c16ce.4e6698faeb878b7c9fbc.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/7b3896592f6bd0b298c19dd4d8354f9d91ce480e.31b014859fab358272ba.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/30e309cc7abdea375b7bd984e366392b9da944f2.34c7bdff426bd3314c34.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/655c323a305da81d43026031816a85481c1b9680.99082661aeb7fde288ba.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/40cbab0505061a40cd620fc62d1432b9a5bf5fe3.36806490989603726c11.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/a2bba0fe3111882f540e8cbf7e3f49e7588aa2a7.66ed31d5df5a3a5b4c01.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/ff4c89236e3083d754c8c98a83cf29ec81011835.33965c9745169d21431f.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/e5f9db3ed3e15d395c2ab0c90e7af622747a347b.86fa3a0df25aee41ea77.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/70794292e8bd506f7e17b958757c7918261d0773.d095fe82ba43c673422c.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/36aac51ccbe5da6bcf06fecba089bd8f49d2f980.252c7850b2f3588aab2f.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/950ebb8a0f19bd14810d16d95e94cbf78936c50b.6f07e361ad537c7aaa50.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/styles.c55cd3c43b63374a73d7.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/pages/_app-f801038298b6b2d536bd.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/52008dc0e9812e50b03c486092cb752124e99f7a.9ed0e143932b36e29cea.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/292200965c05c5b5cc37f5c0702b676604da0ca4.71bf21e2045803f26945.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/ddcb9a40acf772ca37174d6c128e70e6a1c92357.cd8d8cbbbf76bc1e02c4.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/0cf15cf80c9426c9bbc1acb37060dddab236e82e.0d127d0bc685c1834b11.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/9e5be863560300e96a85facda4ef903e230fdedb.ad0fc8f5a6582d4fb424.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/8521dc3d9b9ece6fd49907ddd03d2a4841e98f4b.8e61b096f19fe2b16a84.js" rel="preload"/><link as="script" href="https://s2.coinmarketcap.com/_next/static/chunks/pages/beta-0ecd66a250ce4678c31a.js" rel="preload"/><style data-styled="" data-styled-version="5.1.1">.lohPt{position:relative;background-image:url('https://s2.coinmarketcap.com/static/cloud/img/coinmarketcap_1.svg?_=29bbdee');display:inline-block;background-position:center;background-repeat:no-repeat;background-size:contain;width:239px;height:41px;}/*!sc*/
.lohPt::after{content:'';display:none;position:absolute;top:-11px;left:-10px;width:30px;height:30px;background-image:url(https://s2.coinmarketcap.com/static/cloud/img/christmasHat.svg?_=29bbdee);background-position:center;background-repeat:no-repeat;background-size:contain;}/*!sc*/
.lohPt.cmc-logo--size-large{width:263px;height:45px;}/*!sc*/
data-styled.g2[id="sc-7i7lua-0"]{content:"lohPt,"}/*!sc*/
.gOBYxd{display:block;background-position:center;background-repeat:no-repeat;background-size:contain;width:120px;}/*!sc*/
.gOBYxd.cmc-app-store-badge--ios{background-image:url('https://s2.coinmarketcap.com/static/cloud/img/app_store_badge_black_1.svg?_=29bbdee');height:40px;}/*!sc*/
.gOBYxd.cmc-app-store-badge--android{background-image:url('https://s2.coinmarketcap.com/static/cloud/img/google_play_badge_1.png?_=29bbdee');height:36px;}/*!sc*/
data-styled.g3[id="sc-17dy621-0"]{content:"gOBYxd,"}/*!sc*/
.fPKtoJ{background:#fff;padding:48px 10px 38px 10px;font-style:normal;max-width:1400px;margin:0 auto;}/*!sc*/
.fPKtoJ ul{padding-left:0;list-style:none;}/*!sc*/
.fPKtoJ ul li{line-height:35px;position:relative;}/*!sc*/
.fPKtoJ .cmc-app-store-badge{display:inline-block;height:37px;}/*!sc*/
.fPKtoJ .footer-meta{padding-top:66px;width:100%;}/*!sc*/
@media (min-width:768px){.fPKtoJ .footer-meta{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
@media (max-width:768px){.fPKtoJ .footer-meta{padding-top:50px;}}/*!sc*/
.fPKtoJ .cmc-logo{height:32px;background-position:left;}/*!sc*/
.fPKtoJ .tips{height:22px;background:#3861fb;color:#ffffff;line-height:17px;border-radius:40px;font-size:11px;padding:2px 12px;margin-left:5px;}/*!sc*/
@media (min-width:1400px) and (max-width:1500px){.fPKtoJ{padding:48px 30px 38px 30px;}}/*!sc*/
@media (min-width:1280px) and (max-width:1400px){.fPKtoJ{padding:48px 25px 38px 25px;}.fPKtoJ .tips{position:absolute;top:5px;right:0px;}}/*!sc*/
@media (min-width:992px) and (max-width:1280px){.fPKtoJ{padding:48px 80px 38px 80px;}.fPKtoJ .tips{position:relative;}}/*!sc*/
@media (min-width:768px) and (max-width:992px){.fPKtoJ{padding:48px 30px 38px 30px;}}/*!sc*/
@media (max-width:768px){.fPKtoJ{padding:38px 5px 38px 25px;}}/*!sc*/
data-styled.g4[id="i8b499-0"]{content:"fPKtoJ,"}/*!sc*/
.leywDA{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;}/*!sc*/
data-styled.g5[id="i8b499-1"]{content:"leywDA,"}/*!sc*/
.kFXOmn{-webkit-flex:1 1 50%;-ms-flex:1 1 50%;flex:1 1 50%;}/*!sc*/
@media (max-width:1280px){.kFXOmn{-webkit-flex:1 1 100% !important;-ms-flex:1 1 100% !important;flex:1 1 100% !important;margin-bottom:35px;}}/*!sc*/
data-styled.g6[id="i8b499-2"]{content:"kFXOmn,"}/*!sc*/
.jrTZTi{-webkit-flex:1 1 50%;-ms-flex:1 1 50%;flex:1 1 50%;}/*!sc*/
@media (min-width:992px) and (max-width:1280px){.jrTZTi{-webkit-flex:1 1 100%;-ms-flex:1 1 100%;flex:1 1 100%;}}/*!sc*/
@media (max-width:768px){.jrTZTi .footer-row{overflow:hidden;}}/*!sc*/
data-styled.g7[id="i8b499-3"]{content:"jrTZTi,"}/*!sc*/
.dzUHFA{-webkit-flex:1 1 70%;-ms-flex:1 1 70%;flex:1 1 70%;font-weight:500;font-size:14px;line-height:21px;color:#58667E;}/*!sc*/
@media (min-width:768px) and (max-width:992px){.dzUHFA{-webkit-flex:1 1 55%;-ms-flex:1 1 55%;flex:1 1 55%;}}/*!sc*/
@media (max-width:768px){.dzUHFA{margin-bottom:20px;}}/*!sc*/
data-styled.g8[id="i8b499-4"]{content:"dzUHFA,"}/*!sc*/
.hSxkho{-webkit-flex:1 1 30%;-ms-flex:1 1 30%;flex:1 1 30%;text-align:right;}/*!sc*/
@media (min-width:768px) and (max-width:992px){.hSxkho{-webkit-flex:1 1 45%;-ms-flex:1 1 45%;flex:1 1 45%;}}/*!sc*/
@media (max-width:768px){.hSxkho{text-align:left;}}/*!sc*/
data-styled.g9[id="i8b499-5"]{content:"hSxkho,"}/*!sc*/
.gRuTnc{float:left;width:25%;padding-right:10px;box-sizing:border-box;}/*!sc*/
@media (max-width:768px){.gRuTnc{width:50%;padding-bottom:35px;}}/*!sc*/
.gRuTnc span{display:inline-block;font-weight:600;font-size:16px;line-height:26px;padding-bottom:18px;padding-top:5px;}/*!sc*/
.gRuTnc a{font-weight:500;font-size:14px;color:#58667E;}/*!sc*/
data-styled.g10[id="i8b499-6"]{content:"gRuTnc,"}/*!sc*/
.eTRJtf{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:600;border-radius:40px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:1px 8px;font-size:12px;line-height:18px;height:20px;color:#FFFFFF;background-color:#3861FB;margin-left:8px;}/*!sc*/
data-styled.g16[id="sc-AxiKw"]{content:"eTRJtf,"}/*!sc*/
.gAIOEV{box-sizing:border-box;margin:0;margin-left:8px;margin-right:8px;padding-right:8px;}/*!sc*/
.gAIOEV a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.CnJdC{box-sizing:border-box;margin:0;height:16px;width:16px;}/*!sc*/
.CnJdC a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.loZKFC{box-sizing:border-box;margin:0;height:24px;width:24px;}/*!sc*/
.loZKFC a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.jDlxxm{box-sizing:border-box;margin:0;height:22;width:22;}/*!sc*/
.jDlxxm a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.bKwmGO{box-sizing:border-box;margin:0;height:40;width:40;}/*!sc*/
.bKwmGO a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.fwIcUB{box-sizing:border-box;margin:0;margin-right:8px;}/*!sc*/
.fwIcUB a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.iQwsru{box-sizing:border-box;margin:0;height:18px;width:18px;}/*!sc*/
.iQwsru a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.bkedAk{box-sizing:border-box;margin:0;padding-top:4px;padding-bottom:16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
.bkedAk a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
@media screen and (min-width:768px){.bkedAk{padding-top:24px;padding-bottom:24px;}}/*!sc*/
@media screen and (min-width:768px){}/*!sc*/
@media screen and (min-width:1152px){.bkedAk{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}/*!sc*/
.dYbySe{box-sizing:border-box;margin:0;margin-right:0;-webkit-flex:1;-ms-flex:1;flex:1;}/*!sc*/
.dYbySe a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
@media screen and (min-width:768px){.dYbySe{margin-right:0;}}/*!sc*/
@media screen and (min-width:1152px){.dYbySe{margin-right:24px;}}/*!sc*/
.bYwLMj{box-sizing:border-box;margin:0;}/*!sc*/
.bYwLMj a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.keRptt{box-sizing:border-box;margin:0;margin-right:4px;}/*!sc*/
.keRptt a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.guSXYp{box-sizing:border-box;margin:0;margin-top:16px;}/*!sc*/
.guSXYp a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.kbfzRn{box-sizing:border-box;margin:0;margin-top:16px;min-height:90px;width:100%;}/*!sc*/
.kbfzRn a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
@media screen and (min-width:768px){.kbfzRn{margin-top:24px;}}/*!sc*/
@media screen and (min-width:1152px){.kbfzRn{margin-top:0;}}/*!sc*/
@media screen and (min-width:768px){}/*!sc*/
@media screen and (min-width:1152px){.kbfzRn{max-width:728px;}}/*!sc*/
.cUEIif{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.cUEIif a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.dqoXIW{box-sizing:border-box;margin:0;height:14px;width:14px;}/*!sc*/
.dqoXIW a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.bpYSuY{box-sizing:border-box;margin:0;height:16;width:16;color:#A6B0C3;}/*!sc*/
.bpYSuY a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.bzAUaH{box-sizing:border-box;margin:0;margin:16px;}/*!sc*/
.bzAUaH a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g17[id="sc-AxhCb"]{content:"gAIOEV,CnJdC,loZKFC,jDlxxm,bKwmGO,fwIcUB,iQwsru,bkedAk,dYbySe,bYwLMj,keRptt,guSXYp,kbfzRn,cUEIif,dqoXIW,bpYSuY,bzAUaH,"}/*!sc*/
.fqrLrs{line-height:1.5;margin:0;color:#222531;font-weight:600;font-size:14px;}/*!sc*/
.fEdfVy{line-height:1.5;margin:0;color:#222531;font-size:16px;font-weight:600;}/*!sc*/
.juchaL{line-height:1.5;margin:0;margin-left:12px;color:#222531;font-size:16px;font-weight:500;}/*!sc*/
.gEvIrr{line-height:1.5;margin:0;color:#58667E;font-size:14px;}/*!sc*/
.diNEjy{line-height:1.5;margin:0;color:#58667E;font-weight:600;font-size:14px;}/*!sc*/
.evInTq{line-height:1.5;margin:0;margin-bottom:4px;color:#58667E;font-size:14px;}/*!sc*/
.jEtXdd{line-height:1.5;margin:0;margin-right:6px;color:#58667E;font-size:12px;}/*!sc*/
.cgLliP{line-height:1.5;margin:0;color:#222531;font-size:12px;}/*!sc*/
.kVvvpJ{line-height:1.5;margin:0;color:#222531;font-size:14px;}/*!sc*/
.cEPKAB{line-height:1.5;margin:0;color:#58667E;font-size:12px;}/*!sc*/
.bzeXdk{line-height:1.5;margin:0;color:#808A9D;font-size:14px;}/*!sc*/
.ghbWav{line-height:1.5;margin:0;color:#222531;font-size:14px;font-weight:500;}/*!sc*/
.bduqLR{line-height:1.5;margin:0;margin-left:4px;color:#222531;font-size:11px;}/*!sc*/
.loaKBT{line-height:1.5;margin:0;margin-right:6px;color:#58667E;font-size:14px;}/*!sc*/
data-styled.g18[id="sc-AxhUy"]{content:"fqrLrs,fEdfVy,juchaL,gEvIrr,diNEjy,evInTq,jEtXdd,cgLliP,kVvvpJ,cEPKAB,bzeXdk,ghbWav,bduqLR,loaKBT,"}/*!sc*/
.ivcmHV{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border:0;border-radius:8px;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:#000000;cursor:pointer;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:0;font-weight:600;width:auto;height:48px;font-size:16px;padding:0 24px;line-height:26px;}/*!sc*/
.ivcmHV:hover:not(:disabled){background:#F8FAFD;color:#000000;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.ivcmHV:active{background:#FFFFFF;color:#3861FB;}/*!sc*/
.ivcmHV:focus{background:#F8FAFD;box-shadow:0 0 0 3px #EFF2F5;color:#000000;}/*!sc*/
.ivcmHV:disabled{background:#EFF2F5;color:#000000;opacity:0.5;cursor:not-allowed;}/*!sc*/
.efDSWh{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#EFF2F5;border:0;border-radius:8px;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:#000000;cursor:pointer;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:0;font-weight:600;width:auto;height:32px;font-size:12px;padding:0 16px;line-height:18px;}/*!sc*/
.efDSWh:hover:not(:disabled){background:linear-gradient(0deg,rgba(0,0,0,0.02),rgba(0,0,0,0.02)),#EFF2F5;color:#000000;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.efDSWh:active{background:#EFF2F5;}/*!sc*/
.efDSWh:focus{background:#EFF2F5;box-shadow:0 0 0 3px #CFD6E4;color:#000000;}/*!sc*/
.efDSWh:disabled{background:#EFF2F5;color:#000000;opacity:0.5;cursor:not-allowed;}/*!sc*/
.kRJbDY{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border:0;border-radius:8px;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:#000000;cursor:pointer;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:0;font-weight:600;width:auto;height:32px;font-size:12px;padding:0 16px;line-height:18px;}/*!sc*/
.kRJbDY:hover:not(:disabled){background:#F8FAFD;color:#000000;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.kRJbDY:active{background:#FFFFFF;color:#3861FB;}/*!sc*/
.kRJbDY:focus{background:#F8FAFD;box-shadow:0 0 0 3px #EFF2F5;color:#000000;}/*!sc*/
.kRJbDY:disabled{background:#EFF2F5;color:#000000;opacity:0.5;cursor:not-allowed;}/*!sc*/
.bJMCAy{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:transparent;border:0;border-radius:50vh;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:#000000;cursor:pointer;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:0;font-weight:600;width:auto;height:40px;font-size:14px;padding:0 24px;line-height:24px;}/*!sc*/
.bJMCAy:hover:not(:disabled){background:#F8FAFD;color:#000000;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.bJMCAy:active{background:#FFFFFF;color:#3861FB;}/*!sc*/
.bJMCAy:focus{background:#F8FAFD;box-shadow:0 0 0 3px #EFF2F5;color:#000000;}/*!sc*/
.bJMCAy:disabled{background:#EFF2F5;color:#000000;opacity:0.5;cursor:not-allowed;}/*!sc*/
.iJxTJr{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#3861FB;border:0;border-radius:8px;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;color:#FFFFFF;cursor:pointer;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:0;font-weight:600;width:auto;height:32px;font-size:12px;padding:0 16px;line-height:18px;}/*!sc*/
.iJxTJr:hover:not(:disabled){background:linear-gradient(0deg,rgba(0,0,0,0.08),rgba(0,0,0,0.08)),#3861FB;color:#FFFFFF;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.iJxTJr:active{background:#3861FB;}/*!sc*/
.iJxTJr:focus{background:#3861FB;box-shadow:0 0 0 3px rgba(56,97,251,0.32);color:#FFFFFF;}/*!sc*/
.iJxTJr:disabled{background:#EFF2F5;color:#000000;opacity:0.5;cursor:not-allowed;}/*!sc*/
data-styled.g21[id="sc-Axmtr"]{content:"ivcmHV,efDSWh,kRJbDY,bJMCAy,iJxTJr,"}/*!sc*/
.kdmeeD{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-left:0;margin-right:8px;}/*!sc*/
data-styled.g22[id="sc-AxmLO"]{content:"kdmeeD,"}/*!sc*/
.iVccbF{margin:0;font-weight:700;font-size:24px;line-height:34px;font-size:14px;line-height:28px;margin-bottom:4px;margin-top:8px;color:#222531;}/*!sc*/
@media screen and (min-width:768px){.iVccbF{font-size:32px;line-height:42px;}}/*!sc*/
@media screen and (min-width:1152px){.iVccbF{font-size:48px;line-height:66px;}}/*!sc*/
@media screen and (min-width:768px){.iVccbF{font-size:24px;line-height:34px;}}/*!sc*/
data-styled.g31[id="sc-fzqBZW"]{content:"iVccbF,"}/*!sc*/
.edTNjJ{border-radius:8px;padding:0;width:48px;}/*!sc*/
.fvNIAx{border-radius:50%;padding:0;width:40px;}/*!sc*/
data-styled.g32[id="sc-fzqNJr"]{content:"edTNjJ,fvNIAx,"}/*!sc*/
.eLpUJW .grid{box-sizing:border-box;width:100%;padding-right:16px;padding-left:16px;margin-right:auto;margin-left:auto;}/*!sc*/
@media (min-width:1376px){.eLpUJW .grid{max-width:1408px;}}/*!sc*/
.eLpUJW .grid.edge-md{padding-right:0;padding-left:0;}/*!sc*/
@media (min-width:1152px){.eLpUJW .grid.edge-md{padding-right:16px;padding-left:16px;}}/*!sc*/
.eLpUJW .grid-fluid,.eLpUJW .grid-xl{width:100%;padding-right:16px;padding-left:16px;margin-right:auto;margin-left:auto;}/*!sc*/
@media (min-width:1376px){.eLpUJW .grid,.eLpUJW .grid-sm,.eLpUJW .grid-md,.eLpUJW .grid-lg,.eLpUJW .grid-xl{max-width:1408px;}}/*!sc*/
.eLpUJW .uikit-row{box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-16px;margin-left:-16px;}/*!sc*/
.eLpUJW .no-gutters{margin-right:0;margin-left:0;}/*!sc*/
.eLpUJW .no-gutters > .uikit-col,.eLpUJW .no-gutters > [class*="uikit-col-"]{padding-right:0;padding-left:0;}/*!sc*/
.eLpUJW .uikit-col-1,.eLpUJW .uikit-col-2,.eLpUJW .uikit-col-3,.eLpUJW .uikit-col-4,.eLpUJW .uikit-col-5,.eLpUJW .uikit-col-6,.eLpUJW .uikit-col-7,.eLpUJW .uikit-col-8,.eLpUJW .uikit-col-9,.eLpUJW .uikit-col-10,.eLpUJW .uikit-col-11,.eLpUJW .uikit-col-12,.eLpUJW .uikit-col-13,.eLpUJW .uikit-col-14,.eLpUJW .uikit-col-15,.eLpUJW .uikit-col-16,.eLpUJW .uikit-col,.eLpUJW .uikit-col-auto,.eLpUJW .uikit-col-sm-1,.eLpUJW .uikit-col-sm-2,.eLpUJW .uikit-col-sm-3,.eLpUJW .uikit-col-sm-4,.eLpUJW .uikit-col-sm-5,.eLpUJW .uikit-col-sm-6,.eLpUJW .uikit-col-sm-7,.eLpUJW .uikit-col-sm-8,.eLpUJW .uikit-col-sm-9,.eLpUJW .uikit-col-sm-10,.eLpUJW .uikit-col-sm-11,.eLpUJW .uikit-col-sm-12,.eLpUJW .uikit-col-sm-13,.eLpUJW .uikit-col-sm-14,.eLpUJW .uikit-col-sm-15,.eLpUJW .uikit-col-sm-16,.eLpUJW .uikit-col-sm,.eLpUJW .uikit-col-sm-auto,.eLpUJW .uikit-col-md-1,.eLpUJW .uikit-col-md-2,.eLpUJW .uikit-col-md-3,.eLpUJW .uikit-col-md-4,.eLpUJW .uikit-col-md-5,.eLpUJW .uikit-col-md-6,.eLpUJW .uikit-col-md-7,.eLpUJW .uikit-col-md-8,.eLpUJW .uikit-col-md-9,.eLpUJW .uikit-col-md-10,.eLpUJW .uikit-col-md-11,.eLpUJW .uikit-col-md-12,.eLpUJW .uikit-col-md-13,.eLpUJW .uikit-col-md-14,.eLpUJW .uikit-col-md-15,.eLpUJW .uikit-col-md-16,.eLpUJW .uikit-col-md,.eLpUJW .uikit-col-md-auto,.eLpUJW .uikit-col-lg-1,.eLpUJW .uikit-col-lg-2,.eLpUJW .uikit-col-lg-3,.eLpUJW .uikit-col-lg-4,.eLpUJW .uikit-col-lg-5,.eLpUJW .uikit-col-lg-6,.eLpUJW .uikit-col-lg-7,.eLpUJW .uikit-col-lg-8,.eLpUJW .uikit-col-lg-9,.eLpUJW .uikit-col-lg-10,.eLpUJW .uikit-col-lg-11,.eLpUJW .uikit-col-lg-12,.eLpUJW .uikit-col-lg-13,.eLpUJW .uikit-col-lg-14,.eLpUJW .uikit-col-lg-15,.eLpUJW .uikit-col-lg-16,.eLpUJW .uikit-col-lg,.eLpUJW .uikit-col-lg-auto,.eLpUJW .uikit-col-xl-1,.eLpUJW .uikit-col-xl-2,.eLpUJW .uikit-col-xl-3,.eLpUJW .uikit-col-xl-4,.eLpUJW .uikit-col-xl-5,.eLpUJW .uikit-col-xl-6,.eLpUJW .uikit-col-xl-7,.eLpUJW .uikit-col-xl-8,.eLpUJW .uikit-col-xl-9,.eLpUJW .uikit-col-xl-10,.eLpUJW .uikit-col-xl-11,.eLpUJW .uikit-col-xl-12,.eLpUJW .uikit-col-xl-13,.eLpUJW .uikit-col-xl-14,.eLpUJW .uikit-col-xl-15,.eLpUJW .uikit-col-xl-16,.eLpUJW .uikit-col-xl,.eLpUJW .uikit-col-xl-auto{box-sizing:border-box;position:relative;width:100%;padding-right:16px;padding-left:16px;}/*!sc*/
.eLpUJW .uikit-col{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%;}/*!sc*/
.eLpUJW .uikit-row-cols-1 > *{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}/*!sc*/
.eLpUJW .uikit-row-cols-2 > *{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}/*!sc*/
.eLpUJW .uikit-row-cols-3 > *{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%;}/*!sc*/
.eLpUJW .uikit-row-cols-4 > *{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}/*!sc*/
.eLpUJW .uikit-row-cols-5 > *{-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%;}/*!sc*/
.eLpUJW .uikit-row-cols-6 > *{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%;}/*!sc*/
.eLpUJW .uikit-col-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%;}/*!sc*/
.eLpUJW .uikit-col-1{-webkit-flex:0 0 6.25%;-ms-flex:0 0 6.25%;flex:0 0 6.25%;max-width:6.25%;}/*!sc*/
.eLpUJW .uikit-col-2{-webkit-flex:0 0 12.5%;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%;}/*!sc*/
.eLpUJW .uikit-col-3{-webkit-flex:0 0 18.75%;-ms-flex:0 0 18.75%;flex:0 0 18.75%;max-width:18.75%;}/*!sc*/
.eLpUJW .uikit-col-4{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}/*!sc*/
.eLpUJW .uikit-col-5{-webkit-flex:0 0 31.25%;-ms-flex:0 0 31.25%;flex:0 0 31.25%;max-width:31.25%;}/*!sc*/
.eLpUJW .uikit-col-6{-webkit-flex:0 0 37.5%;-ms-flex:0 0 37.5%;flex:0 0 37.5%;max-width:37.5%;}/*!sc*/
.eLpUJW .uikit-col-7{-webkit-flex:0 0 43.75%;-ms-flex:0 0 43.75%;flex:0 0 43.75%;max-width:43.75%;}/*!sc*/
.eLpUJW .uikit-col-8{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}/*!sc*/
.eLpUJW .uikit-col-9{-webkit-flex:0 0 56.25%;-ms-flex:0 0 56.25%;flex:0 0 56.25%;max-width:56.25%;}/*!sc*/
.eLpUJW .uikit-col-10{-webkit-flex:0 0 62.5%;-ms-flex:0 0 62.5%;flex:0 0 62.5%;max-width:62.5%;}/*!sc*/
.eLpUJW .uikit-col-11{-webkit-flex:0 0 68.75%;-ms-flex:0 0 68.75%;flex:0 0 68.75%;max-width:68.75%;}/*!sc*/
.eLpUJW .uikit-col-12{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;}/*!sc*/
.eLpUJW .uikit-col-13{-webkit-flex:0 0 81.25%;-ms-flex:0 0 81.25%;flex:0 0 81.25%;max-width:81.25%;}/*!sc*/
.eLpUJW .uikit-col-14{-webkit-flex:0 0 87.5%;-ms-flex:0 0 87.5%;flex:0 0 87.5%;max-width:87.5%;}/*!sc*/
.eLpUJW .uikit-col-15{-webkit-flex:0 0 93.75%;-ms-flex:0 0 93.75%;flex:0 0 93.75%;max-width:93.75%;}/*!sc*/
.eLpUJW .uikit-col-16{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}/*!sc*/
.eLpUJW .uikit-order-first{-webkit-order:-1;-ms-flex-order:-1;order:-1;}/*!sc*/
.eLpUJW .uikit-order-last{-webkit-order:17;-ms-flex-order:17;order:17;}/*!sc*/
.eLpUJW .uikit-order-0{-webkit-order:0;-ms-flex-order:0;order:0;}/*!sc*/
.eLpUJW .uikit-order-1{-webkit-order:1;-ms-flex-order:1;order:1;}/*!sc*/
.eLpUJW .uikit-order-2{-webkit-order:2;-ms-flex-order:2;order:2;}/*!sc*/
.eLpUJW .uikit-order-3{-webkit-order:3;-ms-flex-order:3;order:3;}/*!sc*/
.eLpUJW .uikit-order-4{-webkit-order:4;-ms-flex-order:4;order:4;}/*!sc*/
.eLpUJW .uikit-order-5{-webkit-order:5;-ms-flex-order:5;order:5;}/*!sc*/
.eLpUJW .uikit-order-6{-webkit-order:6;-ms-flex-order:6;order:6;}/*!sc*/
.eLpUJW .uikit-order-7{-webkit-order:7;-ms-flex-order:7;order:7;}/*!sc*/
.eLpUJW .uikit-order-8{-webkit-order:8;-ms-flex-order:8;order:8;}/*!sc*/
.eLpUJW .uikit-order-9{-webkit-order:9;-ms-flex-order:9;order:9;}/*!sc*/
.eLpUJW .uikit-order-10{-webkit-order:10;-ms-flex-order:10;order:10;}/*!sc*/
.eLpUJW .uikit-order-11{-webkit-order:11;-ms-flex-order:11;order:11;}/*!sc*/
.eLpUJW .uikit-order-12{-webkit-order:12;-ms-flex-order:12;order:12;}/*!sc*/
.eLpUJW .uikit-order-13{-webkit-order:13;-ms-flex-order:13;order:13;}/*!sc*/
.eLpUJW .uikit-order-14{-webkit-order:14;-ms-flex-order:14;order:14;}/*!sc*/
.eLpUJW .uikit-order-15{-webkit-order:15;-ms-flex-order:15;order:15;}/*!sc*/
.eLpUJW .uikit-order-16{-webkit-order:16;-ms-flex-order:16;order:16;}/*!sc*/
.eLpUJW .uikit-offset-1{margin-left:6.25%;}/*!sc*/
.eLpUJW .uikit-offset-2{margin-left:12.5%;}/*!sc*/
.eLpUJW .uikit-offset-3{margin-left:18.75%;}/*!sc*/
.eLpUJW .uikit-offset-4{margin-left:25%;}/*!sc*/
.eLpUJW .uikit-offset-5{margin-left:31.25%;}/*!sc*/
.eLpUJW .uikit-offset-6{margin-left:37.5%;}/*!sc*/
.eLpUJW .uikit-offset-7{margin-left:43.75%;}/*!sc*/
.eLpUJW .uikit-offset-8{margin-left:50%;}/*!sc*/
.eLpUJW .uikit-offset-9{margin-left:56.25%;}/*!sc*/
.eLpUJW .uikit-offset-10{margin-left:62.5%;}/*!sc*/
.eLpUJW .uikit-offset-11{margin-left:68.75%;}/*!sc*/
.eLpUJW .uikit-offset-12{margin-left:75%;}/*!sc*/
.eLpUJW .uikit-offset-13{margin-left:81.25%;}/*!sc*/
.eLpUJW .uikit-offset-14{margin-left:87.5%;}/*!sc*/
.eLpUJW .uikit-offset-15{margin-left:93.75%;}/*!sc*/
@media (min-width:768px){.eLpUJW .uikit-col-sm{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%;}.eLpUJW .uikit-row-cols-sm-1 > *{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-row-cols-sm-2 > *{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-row-cols-sm-3 > *{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%;}.eLpUJW .uikit-row-cols-sm-4 > *{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-row-cols-sm-5 > *{-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%;}.eLpUJW .uikit-row-cols-sm-6 > *{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%;}.eLpUJW .uikit-col-sm-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%;}.eLpUJW .uikit-col-sm-1{-webkit-flex:0 0 6.25%;-ms-flex:0 0 6.25%;flex:0 0 6.25%;max-width:6.25%;}.eLpUJW .uikit-col-sm-2{-webkit-flex:0 0 12.5%;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%;}.eLpUJW .uikit-col-sm-3{-webkit-flex:0 0 18.75%;-ms-flex:0 0 18.75%;flex:0 0 18.75%;max-width:18.75%;}.eLpUJW .uikit-col-sm-4{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-col-sm-5{-webkit-flex:0 0 31.25%;-ms-flex:0 0 31.25%;flex:0 0 31.25%;max-width:31.25%;}.eLpUJW .uikit-col-sm-6{-webkit-flex:0 0 37.5%;-ms-flex:0 0 37.5%;flex:0 0 37.5%;max-width:37.5%;}.eLpUJW .uikit-col-sm-7{-webkit-flex:0 0 43.75%;-ms-flex:0 0 43.75%;flex:0 0 43.75%;max-width:43.75%;}.eLpUJW .uikit-col-sm-8{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-col-sm-9{-webkit-flex:0 0 56.25%;-ms-flex:0 0 56.25%;flex:0 0 56.25%;max-width:56.25%;}.eLpUJW .uikit-col-sm-10{-webkit-flex:0 0 62.5%;-ms-flex:0 0 62.5%;flex:0 0 62.5%;max-width:62.5%;}.eLpUJW .uikit-col-sm-11{-webkit-flex:0 0 68.75%;-ms-flex:0 0 68.75%;flex:0 0 68.75%;max-width:68.75%;}.eLpUJW .uikit-col-sm-12{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;}.eLpUJW .uikit-col-sm-13{-webkit-flex:0 0 81.25%;-ms-flex:0 0 81.25%;flex:0 0 81.25%;max-width:81.25%;}.eLpUJW .uikit-col-sm-14{-webkit-flex:0 0 87.5%;-ms-flex:0 0 87.5%;flex:0 0 87.5%;max-width:87.5%;}.eLpUJW .uikit-col-sm-15{-webkit-flex:0 0 93.75%;-ms-flex:0 0 93.75%;flex:0 0 93.75%;max-width:93.75%;}.eLpUJW .uikit-col-sm-16{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-order-sm-first{-webkit-order:-1;-ms-flex-order:-1;order:-1;}.eLpUJW .uikit-order-sm-last{-webkit-order:17;-ms-flex-order:17;order:17;}.eLpUJW .uikit-order-sm-0{-webkit-order:0;-ms-flex-order:0;order:0;}.eLpUJW .uikit-order-sm-1{-webkit-order:1;-ms-flex-order:1;order:1;}.eLpUJW .uikit-order-sm-2{-webkit-order:2;-ms-flex-order:2;order:2;}.eLpUJW .uikit-order-sm-3{-webkit-order:3;-ms-flex-order:3;order:3;}.eLpUJW .uikit-order-sm-4{-webkit-order:4;-ms-flex-order:4;order:4;}.eLpUJW .uikit-order-sm-5{-webkit-order:5;-ms-flex-order:5;order:5;}.eLpUJW .uikit-order-sm-6{-webkit-order:6;-ms-flex-order:6;order:6;}.eLpUJW .uikit-order-sm-7{-webkit-order:7;-ms-flex-order:7;order:7;}.eLpUJW .uikit-order-sm-8{-webkit-order:8;-ms-flex-order:8;order:8;}.eLpUJW .uikit-order-sm-9{-webkit-order:9;-ms-flex-order:9;order:9;}.eLpUJW .uikit-order-sm-10{-webkit-order:10;-ms-flex-order:10;order:10;}.eLpUJW .uikit-order-sm-11{-webkit-order:11;-ms-flex-order:11;order:11;}.eLpUJW .uikit-order-sm-12{-webkit-order:12;-ms-flex-order:12;order:12;}.eLpUJW .uikit-order-sm-13{-webkit-order:13;-ms-flex-order:13;order:13;}.eLpUJW .uikit-order-sm-14{-webkit-order:14;-ms-flex-order:14;order:14;}.eLpUJW .uikit-order-sm-15{-webkit-order:15;-ms-flex-order:15;order:15;}.eLpUJW .uikit-order-sm-16{-webkit-order:16;-ms-flex-order:16;order:16;}.eLpUJW .uikit-offset-sm-0{margin-left:0;}.eLpUJW .uikit-offset-sm-1{margin-left:6.25%;}.eLpUJW .uikit-offset-sm-2{margin-left:12.5%;}.eLpUJW .uikit-offset-sm-3{margin-left:18.75%;}.eLpUJW .uikit-offset-sm-4{margin-left:25%;}.eLpUJW .uikit-offset-sm-5{margin-left:31.25%;}.eLpUJW .uikit-offset-sm-6{margin-left:37.5%;}.eLpUJW .uikit-offset-sm-7{margin-left:43.75%;}.eLpUJW .uikit-offset-sm-8{margin-left:50%;}.eLpUJW .uikit-offset-sm-9{margin-left:56.25%;}.eLpUJW .uikit-offset-sm-10{margin-left:62.5%;}.eLpUJW .uikit-offset-sm-11{margin-left:68.75%;}.eLpUJW .uikit-offset-sm-12{margin-left:75%;}.eLpUJW .uikit-offset-sm-13{margin-left:81.25%;}.eLpUJW .uikit-offset-sm-14{margin-left:87.5%;}.eLpUJW .uikit-offset-sm-15{margin-left:93.75%;}}/*!sc*/
@media (min-width:1152px){.eLpUJW .uikit-col-md{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%;}.eLpUJW .uikit-row-cols-md-1 > *{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-row-cols-md-2 > *{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-row-cols-md-3 > *{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%;}.eLpUJW .uikit-row-cols-md-4 > *{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-row-cols-md-5 > *{-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%;}.eLpUJW .uikit-row-cols-md-6 > *{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%;}.eLpUJW .uikit-col-md-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%;}.eLpUJW .uikit-col-md-1{-webkit-flex:0 0 6.25%;-ms-flex:0 0 6.25%;flex:0 0 6.25%;max-width:6.25%;}.eLpUJW .uikit-col-md-2{-webkit-flex:0 0 12.5%;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%;}.eLpUJW .uikit-col-md-3{-webkit-flex:0 0 18.75%;-ms-flex:0 0 18.75%;flex:0 0 18.75%;max-width:18.75%;}.eLpUJW .uikit-col-md-4{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-col-md-5{-webkit-flex:0 0 31.25%;-ms-flex:0 0 31.25%;flex:0 0 31.25%;max-width:31.25%;}.eLpUJW .uikit-col-md-6{-webkit-flex:0 0 37.5%;-ms-flex:0 0 37.5%;flex:0 0 37.5%;max-width:37.5%;}.eLpUJW .uikit-col-md-7{-webkit-flex:0 0 43.75%;-ms-flex:0 0 43.75%;flex:0 0 43.75%;max-width:43.75%;}.eLpUJW .uikit-col-md-8{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-col-md-9{-webkit-flex:0 0 56.25%;-ms-flex:0 0 56.25%;flex:0 0 56.25%;max-width:56.25%;}.eLpUJW .uikit-col-md-10{-webkit-flex:0 0 62.5%;-ms-flex:0 0 62.5%;flex:0 0 62.5%;max-width:62.5%;}.eLpUJW .uikit-col-md-11{-webkit-flex:0 0 68.75%;-ms-flex:0 0 68.75%;flex:0 0 68.75%;max-width:68.75%;}.eLpUJW .uikit-col-md-12{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;}.eLpUJW .uikit-col-md-13{-webkit-flex:0 0 81.25%;-ms-flex:0 0 81.25%;flex:0 0 81.25%;max-width:81.25%;}.eLpUJW .uikit-col-md-14{-webkit-flex:0 0 87.5%;-ms-flex:0 0 87.5%;flex:0 0 87.5%;max-width:87.5%;}.eLpUJW .uikit-col-md-15{-webkit-flex:0 0 93.75%;-ms-flex:0 0 93.75%;flex:0 0 93.75%;max-width:93.75%;}.eLpUJW .uikit-col-md-16{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-order-md-first{-webkit-order:-1;-ms-flex-order:-1;order:-1;}.eLpUJW .uikit-order-md-last{-webkit-order:17;-ms-flex-order:17;order:17;}.eLpUJW .uikit-order-md-0{-webkit-order:0;-ms-flex-order:0;order:0;}.eLpUJW .uikit-order-md-1{-webkit-order:1;-ms-flex-order:1;order:1;}.eLpUJW .uikit-order-md-2{-webkit-order:2;-ms-flex-order:2;order:2;}.eLpUJW .uikit-order-md-3{-webkit-order:3;-ms-flex-order:3;order:3;}.eLpUJW .uikit-order-md-4{-webkit-order:4;-ms-flex-order:4;order:4;}.eLpUJW .uikit-order-md-5{-webkit-order:5;-ms-flex-order:5;order:5;}.eLpUJW .uikit-order-md-6{-webkit-order:6;-ms-flex-order:6;order:6;}.eLpUJW .uikit-order-md-7{-webkit-order:7;-ms-flex-order:7;order:7;}.eLpUJW .uikit-order-md-8{-webkit-order:8;-ms-flex-order:8;order:8;}.eLpUJW .uikit-order-md-9{-webkit-order:9;-ms-flex-order:9;order:9;}.eLpUJW .uikit-order-md-10{-webkit-order:10;-ms-flex-order:10;order:10;}.eLpUJW .uikit-order-md-11{-webkit-order:11;-ms-flex-order:11;order:11;}.eLpUJW .uikit-order-md-12{-webkit-order:12;-ms-flex-order:12;order:12;}.eLpUJW .uikit-order-md-13{-webkit-order:13;-ms-flex-order:13;order:13;}.eLpUJW .uikit-order-md-14{-webkit-order:14;-ms-flex-order:14;order:14;}.eLpUJW .uikit-order-md-15{-webkit-order:15;-ms-flex-order:15;order:15;}.eLpUJW .uikit-order-md-16{-webkit-order:16;-ms-flex-order:16;order:16;}.eLpUJW .uikit-offset-md-0{margin-left:0;}.eLpUJW .uikit-offset-md-1{margin-left:6.25%;}.eLpUJW .uikit-offset-md-2{margin-left:12.5%;}.eLpUJW .uikit-offset-md-3{margin-left:18.75%;}.eLpUJW .uikit-offset-md-4{margin-left:25%;}.eLpUJW .uikit-offset-md-5{margin-left:31.25%;}.eLpUJW .uikit-offset-md-6{margin-left:37.5%;}.eLpUJW .uikit-offset-md-7{margin-left:43.75%;}.eLpUJW .uikit-offset-md-8{margin-left:50%;}.eLpUJW .uikit-offset-md-9{margin-left:56.25%;}.eLpUJW .uikit-offset-md-10{margin-left:62.5%;}.eLpUJW .uikit-offset-md-11{margin-left:68.75%;}.eLpUJW .uikit-offset-md-12{margin-left:75%;}.eLpUJW .uikit-offset-md-13{margin-left:81.25%;}.eLpUJW .uikit-offset-md-14{margin-left:87.5%;}.eLpUJW .uikit-offset-md-15{margin-left:93.75%;}}/*!sc*/
@media (min-width:1248px){.eLpUJW .uikit-col-lg{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%;}.eLpUJW .uikit-row-cols-lg-1 > *{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-row-cols-lg-2 > *{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-row-cols-lg-3 > *{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%;}.eLpUJW .uikit-row-cols-lg-4 > *{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-row-cols-lg-5 > *{-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%;}.eLpUJW .uikit-row-cols-lg-6 > *{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%;}.eLpUJW .uikit-col-lg-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%;}.eLpUJW .uikit-col-lg-1{-webkit-flex:0 0 6.25%;-ms-flex:0 0 6.25%;flex:0 0 6.25%;max-width:6.25%;}.eLpUJW .uikit-col-lg-2{-webkit-flex:0 0 12.5%;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%;}.eLpUJW .uikit-col-lg-3{-webkit-flex:0 0 18.75%;-ms-flex:0 0 18.75%;flex:0 0 18.75%;max-width:18.75%;}.eLpUJW .uikit-col-lg-4{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-col-lg-5{-webkit-flex:0 0 31.25%;-ms-flex:0 0 31.25%;flex:0 0 31.25%;max-width:31.25%;}.eLpUJW .uikit-col-lg-6{-webkit-flex:0 0 37.5%;-ms-flex:0 0 37.5%;flex:0 0 37.5%;max-width:37.5%;}.eLpUJW .uikit-col-lg-7{-webkit-flex:0 0 43.75%;-ms-flex:0 0 43.75%;flex:0 0 43.75%;max-width:43.75%;}.eLpUJW .uikit-col-lg-8{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-col-lg-9{-webkit-flex:0 0 56.25%;-ms-flex:0 0 56.25%;flex:0 0 56.25%;max-width:56.25%;}.eLpUJW .uikit-col-lg-10{-webkit-flex:0 0 62.5%;-ms-flex:0 0 62.5%;flex:0 0 62.5%;max-width:62.5%;}.eLpUJW .uikit-col-lg-11{-webkit-flex:0 0 68.75%;-ms-flex:0 0 68.75%;flex:0 0 68.75%;max-width:68.75%;}.eLpUJW .uikit-col-lg-12{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;}.eLpUJW .uikit-col-lg-13{-webkit-flex:0 0 81.25%;-ms-flex:0 0 81.25%;flex:0 0 81.25%;max-width:81.25%;}.eLpUJW .uikit-col-lg-14{-webkit-flex:0 0 87.5%;-ms-flex:0 0 87.5%;flex:0 0 87.5%;max-width:87.5%;}.eLpUJW .uikit-col-lg-15{-webkit-flex:0 0 93.75%;-ms-flex:0 0 93.75%;flex:0 0 93.75%;max-width:93.75%;}.eLpUJW .uikit-col-lg-16{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-order-lg-first{-webkit-order:-1;-ms-flex-order:-1;order:-1;}.eLpUJW .uikit-order-lg-last{-webkit-order:17;-ms-flex-order:17;order:17;}.eLpUJW .uikit-order-lg-0{-webkit-order:0;-ms-flex-order:0;order:0;}.eLpUJW .uikit-order-lg-1{-webkit-order:1;-ms-flex-order:1;order:1;}.eLpUJW .uikit-order-lg-2{-webkit-order:2;-ms-flex-order:2;order:2;}.eLpUJW .uikit-order-lg-3{-webkit-order:3;-ms-flex-order:3;order:3;}.eLpUJW .uikit-order-lg-4{-webkit-order:4;-ms-flex-order:4;order:4;}.eLpUJW .uikit-order-lg-5{-webkit-order:5;-ms-flex-order:5;order:5;}.eLpUJW .uikit-order-lg-6{-webkit-order:6;-ms-flex-order:6;order:6;}.eLpUJW .uikit-order-lg-7{-webkit-order:7;-ms-flex-order:7;order:7;}.eLpUJW .uikit-order-lg-8{-webkit-order:8;-ms-flex-order:8;order:8;}.eLpUJW .uikit-order-lg-9{-webkit-order:9;-ms-flex-order:9;order:9;}.eLpUJW .uikit-order-lg-10{-webkit-order:10;-ms-flex-order:10;order:10;}.eLpUJW .uikit-order-lg-11{-webkit-order:11;-ms-flex-order:11;order:11;}.eLpUJW .uikit-order-lg-12{-webkit-order:12;-ms-flex-order:12;order:12;}.eLpUJW .uikit-order-lg-13{-webkit-order:13;-ms-flex-order:13;order:13;}.eLpUJW .uikit-order-lg-14{-webkit-order:14;-ms-flex-order:14;order:14;}.eLpUJW .uikit-order-lg-15{-webkit-order:15;-ms-flex-order:15;order:15;}.eLpUJW .uikit-order-lg-16{-webkit-order:16;-ms-flex-order:16;order:16;}.eLpUJW .uikit-offset-lg-0{margin-left:0;}.eLpUJW .uikit-offset-lg-1{margin-left:6.25%;}.eLpUJW .uikit-offset-lg-2{margin-left:12.5%;}.eLpUJW .uikit-offset-lg-3{margin-left:18.75%;}.eLpUJW .uikit-offset-lg-4{margin-left:25%;}.eLpUJW .uikit-offset-lg-5{margin-left:31.25%;}.eLpUJW .uikit-offset-lg-6{margin-left:37.5%;}.eLpUJW .uikit-offset-lg-7{margin-left:43.75%;}.eLpUJW .uikit-offset-lg-8{margin-left:50%;}.eLpUJW .uikit-offset-lg-9{margin-left:56.25%;}.eLpUJW .uikit-offset-lg-10{margin-left:62.5%;}.eLpUJW .uikit-offset-lg-11{margin-left:68.75%;}.eLpUJW .uikit-offset-lg-12{margin-left:75%;}.eLpUJW .uikit-offset-lg-13{margin-left:81.25%;}.eLpUJW .uikit-offset-lg-14{margin-left:87.5%;}.eLpUJW .uikit-offset-lg-15{margin-left:93.75%;}}/*!sc*/
@media (min-width:1376px){.eLpUJW .uikit-col-xl{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%;}.eLpUJW .uikit-row-cols-xl-1 > *{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-row-cols-xl-2 > *{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-row-cols-xl-3 > *{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%;}.eLpUJW .uikit-row-cols-xl-4 > *{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-row-cols-xl-5 > *{-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%;}.eLpUJW .uikit-row-cols-xl-6 > *{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%;}.eLpUJW .uikit-col-xl-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%;}.eLpUJW .uikit-col-xl-1{-webkit-flex:0 0 6.25%;-ms-flex:0 0 6.25%;flex:0 0 6.25%;max-width:6.25%;}.eLpUJW .uikit-col-xl-2{-webkit-flex:0 0 12.5%;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%;}.eLpUJW .uikit-col-xl-3{-webkit-flex:0 0 18.75%;-ms-flex:0 0 18.75%;flex:0 0 18.75%;max-width:18.75%;}.eLpUJW .uikit-col-xl-4{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;}.eLpUJW .uikit-col-xl-5{-webkit-flex:0 0 31.25%;-ms-flex:0 0 31.25%;flex:0 0 31.25%;max-width:31.25%;}.eLpUJW .uikit-col-xl-6{-webkit-flex:0 0 37.5%;-ms-flex:0 0 37.5%;flex:0 0 37.5%;max-width:37.5%;}.eLpUJW .uikit-col-xl-7{-webkit-flex:0 0 43.75%;-ms-flex:0 0 43.75%;flex:0 0 43.75%;max-width:43.75%;}.eLpUJW .uikit-col-xl-8{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;}.eLpUJW .uikit-col-xl-9{-webkit-flex:0 0 56.25%;-ms-flex:0 0 56.25%;flex:0 0 56.25%;max-width:56.25%;}.eLpUJW .uikit-col-xl-10{-webkit-flex:0 0 62.5%;-ms-flex:0 0 62.5%;flex:0 0 62.5%;max-width:62.5%;}.eLpUJW .uikit-col-xl-11{-webkit-flex:0 0 68.75%;-ms-flex:0 0 68.75%;flex:0 0 68.75%;max-width:68.75%;}.eLpUJW .uikit-col-xl-12{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%;}.eLpUJW .uikit-col-xl-13{-webkit-flex:0 0 81.25%;-ms-flex:0 0 81.25%;flex:0 0 81.25%;max-width:81.25%;}.eLpUJW .uikit-col-xl-14{-webkit-flex:0 0 87.5%;-ms-flex:0 0 87.5%;flex:0 0 87.5%;max-width:87.5%;}.eLpUJW .uikit-col-xl-15{-webkit-flex:0 0 93.75%;-ms-flex:0 0 93.75%;flex:0 0 93.75%;max-width:93.75%;}.eLpUJW .uikit-col-xl-16{-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}.eLpUJW .uikit-order-xl-first{-webkit-order:-1;-ms-flex-order:-1;order:-1;}.eLpUJW .uikit-order-xl-last{-webkit-order:17;-ms-flex-order:17;order:17;}.eLpUJW .uikit-order-xl-0{-webkit-order:0;-ms-flex-order:0;order:0;}.eLpUJW .uikit-order-xl-1{-webkit-order:1;-ms-flex-order:1;order:1;}.eLpUJW .uikit-order-xl-2{-webkit-order:2;-ms-flex-order:2;order:2;}.eLpUJW .uikit-order-xl-3{-webkit-order:3;-ms-flex-order:3;order:3;}.eLpUJW .uikit-order-xl-4{-webkit-order:4;-ms-flex-order:4;order:4;}.eLpUJW .uikit-order-xl-5{-webkit-order:5;-ms-flex-order:5;order:5;}.eLpUJW .uikit-order-xl-6{-webkit-order:6;-ms-flex-order:6;order:6;}.eLpUJW .uikit-order-xl-7{-webkit-order:7;-ms-flex-order:7;order:7;}.eLpUJW .uikit-order-xl-8{-webkit-order:8;-ms-flex-order:8;order:8;}.eLpUJW .uikit-order-xl-9{-webkit-order:9;-ms-flex-order:9;order:9;}.eLpUJW .uikit-order-xl-10{-webkit-order:10;-ms-flex-order:10;order:10;}.eLpUJW .uikit-order-xl-11{-webkit-order:11;-ms-flex-order:11;order:11;}.eLpUJW .uikit-order-xl-12{-webkit-order:12;-ms-flex-order:12;order:12;}.eLpUJW .uikit-order-xl-13{-webkit-order:13;-ms-flex-order:13;order:13;}.eLpUJW .uikit-order-xl-14{-webkit-order:14;-ms-flex-order:14;order:14;}.eLpUJW .uikit-order-xl-15{-webkit-order:15;-ms-flex-order:15;order:15;}.eLpUJW .uikit-order-xl-16{-webkit-order:16;-ms-flex-order:16;order:16;}.eLpUJW .uikit-offset-xl-0{margin-left:0;}.eLpUJW .uikit-offset-xl-1{margin-left:6.25%;}.eLpUJW .uikit-offset-xl-2{margin-left:12.5%;}.eLpUJW .uikit-offset-xl-3{margin-left:18.75%;}.eLpUJW .uikit-offset-xl-4{margin-left:25%;}.eLpUJW .uikit-offset-xl-5{margin-left:31.25%;}.eLpUJW .uikit-offset-xl-6{margin-left:37.5%;}.eLpUJW .uikit-offset-xl-7{margin-left:43.75%;}.eLpUJW .uikit-offset-xl-8{margin-left:50%;}.eLpUJW .uikit-offset-xl-9{margin-left:56.25%;}.eLpUJW .uikit-offset-xl-10{margin-left:62.5%;}.eLpUJW .uikit-offset-xl-11{margin-left:68.75%;}.eLpUJW .uikit-offset-xl-12{margin-left:75%;}.eLpUJW .uikit-offset-xl-13{margin-left:81.25%;}.eLpUJW .uikit-offset-xl-14{margin-left:87.5%;}.eLpUJW .uikit-offset-xl-15{margin-left:93.75%;}}/*!sc*/
.eLpUJW .flex-row{-webkit-flex-direction:row !important;-ms-flex-direction:row !important;flex-direction:row !important;}/*!sc*/
.eLpUJW .flex-column{-webkit-flex-direction:column !important;-ms-flex-direction:column !important;flex-direction:column !important;}/*!sc*/
.eLpUJW .flex-row-reverse{-webkit-flex-direction:row-reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important;}/*!sc*/
.eLpUJW .flex-column-reverse{-webkit-flex-direction:column-reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important;}/*!sc*/
.eLpUJW .flex-wrap{-webkit-flex-wrap:wrap !important;-ms-flex-wrap:wrap !important;flex-wrap:wrap !important;}/*!sc*/
.eLpUJW .flex-nowrap{-webkit-flex-wrap:nowrap !important;-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important;}/*!sc*/
.eLpUJW .flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse !important;-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important;}/*!sc*/
.eLpUJW .flex-fill{-webkit-flex:1 1 auto !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important;}/*!sc*/
.eLpUJW .flex-grow-0{-webkit-box-flex:0 !important;-webkit-flex-grow:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important;}/*!sc*/
.eLpUJW .flex-grow-1{-webkit-box-flex:1 !important;-webkit-flex-grow:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important;}/*!sc*/
.eLpUJW .flex-shrink-0{-webkit-flex-shrink:0 !important;-ms-flex-negative:0 !important;flex-shrink:0 !important;}/*!sc*/
.eLpUJW .flex-shrink-1{-webkit-flex-shrink:1 !important;-ms-flex-negative:1 !important;flex-shrink:1 !important;}/*!sc*/
.eLpUJW .justify-content-start{-webkit-box-pack:start !important;-webkit-justify-content:flex-start !important;-ms-flex-pack:start !important;justify-content:flex-start !important;}/*!sc*/
.eLpUJW .justify-content-end{-webkit-box-pack:end !important;-webkit-justify-content:flex-end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;}/*!sc*/
.eLpUJW .justify-content-center{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}/*!sc*/
.eLpUJW .justify-content-between{-webkit-box-pack:justify !important;-webkit-justify-content:space-between !important;-ms-flex-pack:justify !important;justify-content:space-between !important;}/*!sc*/
.eLpUJW .justify-content-around{-webkit-box-pack:space-around !important;-webkit-justify-content:space-around !important;-ms-flex-pack:space-around !important;justify-content:space-around !important;}/*!sc*/
.eLpUJW .align-items-start{-webkit-align-items:flex-start !important;-webkit-box-align:flex-start !important;-ms-flex-align:flex-start !important;align-items:flex-start !important;}/*!sc*/
.eLpUJW .align-items-end{-webkit-align-items:flex-end !important;-webkit-box-align:flex-end !important;-ms-flex-align:flex-end !important;align-items:flex-end !important;}/*!sc*/
.eLpUJW .align-items-center{-webkit-align-items:center !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important;}/*!sc*/
.eLpUJW .align-items-baseline{-webkit-align-items:baseline !important;-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important;}/*!sc*/
.eLpUJW .align-items-stretch{-webkit-align-items:stretch !important;-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important;}/*!sc*/
.eLpUJW .align-content-start{-webkit-align-content:flex-start !important;-ms-flex-line-pack:start !important;align-content:flex-start !important;}/*!sc*/
.eLpUJW .align-content-end{-webkit-align-content:flex-end !important;-ms-flex-line-pack:end !important;align-content:flex-end !important;}/*!sc*/
.eLpUJW .align-content-center{-webkit-align-content:center !important;-ms-flex-line-pack:center !important;align-content:center !important;}/*!sc*/
.eLpUJW .align-content-between{-webkit-align-content:space-between !important;-ms-flex-line-pack:space-between !important;align-content:space-between !important;}/*!sc*/
.eLpUJW .align-content-around{-webkit-align-content:space-around !important;-ms-flex-line-pack:space-around !important;align-content:space-around !important;}/*!sc*/
.eLpUJW .align-content-stretch{-webkit-align-content:stretch !important;-ms-flex-line-pack:stretch !important;align-content:stretch !important;}/*!sc*/
.eLpUJW .align-self-auto{-webkit-align-self:auto !important;-ms-flex-item-align:auto !important;align-self:auto !important;}/*!sc*/
.eLpUJW .align-self-start{-webkit-align-self:flex-start !important;-ms-flex-item-align:start !important;align-self:flex-start !important;}/*!sc*/
.eLpUJW .align-self-end{-webkit-align-self:flex-end !important;-ms-flex-item-align:end !important;align-self:flex-end !important;}/*!sc*/
.eLpUJW .align-self-center{-webkit-align-self:center !important;-ms-flex-item-align:center !important;align-self:center !important;}/*!sc*/
.eLpUJW .align-self-baseline{-webkit-align-self:baseline !important;-ms-flex-item-align:baseline !important;align-self:baseline !important;}/*!sc*/
.eLpUJW .align-self-stretch{-webkit-align-self:stretch !important;-ms-flex-item-align:stretch !important;align-self:stretch !important;}/*!sc*/
@media (min-width:768px){.eLpUJW .flex-sm-row{-webkit-flex-direction:row !important;-ms-flex-direction:row !important;flex-direction:row !important;}.eLpUJW .flex-sm-column{-webkit-flex-direction:column !important;-ms-flex-direction:column !important;flex-direction:column !important;}.eLpUJW .flex-sm-row-reverse{-webkit-flex-direction:row-reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important;}.eLpUJW .flex-sm-column-reverse{-webkit-flex-direction:column-reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important;}.eLpUJW .flex-sm-wrap{-webkit-flex-wrap:wrap !important;-ms-flex-wrap:wrap !important;flex-wrap:wrap !important;}.eLpUJW .flex-sm-nowrap{-webkit-flex-wrap:nowrap !important;-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important;}.eLpUJW .flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse !important;-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important;}.eLpUJW .flex-sm-fill{-webkit-flex:1 1 auto !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important;}.eLpUJW .flex-sm-grow-0{-webkit-box-flex:0 !important;-webkit-flex-grow:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important;}.eLpUJW .flex-sm-grow-1{-webkit-box-flex:1 !important;-webkit-flex-grow:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important;}.eLpUJW .flex-sm-shrink-0{-webkit-flex-shrink:0 !important;-ms-flex-negative:0 !important;flex-shrink:0 !important;}.eLpUJW .flex-sm-shrink-1{-webkit-flex-shrink:1 !important;-ms-flex-negative:1 !important;flex-shrink:1 !important;}.eLpUJW .justify-content-sm-start{-webkit-box-pack:start !important;-webkit-justify-content:flex-start !important;-ms-flex-pack:start !important;justify-content:flex-start !important;}.eLpUJW .justify-content-sm-end{-webkit-box-pack:end !important;-webkit-justify-content:flex-end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;}.eLpUJW .justify-content-sm-center{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}.eLpUJW .justify-content-sm-between{-webkit-box-pack:justify !important;-webkit-justify-content:space-between !important;-ms-flex-pack:justify !important;justify-content:space-between !important;}.eLpUJW .justify-content-sm-around{-webkit-box-pack:space-around !important;-webkit-justify-content:space-around !important;-ms-flex-pack:space-around !important;justify-content:space-around !important;}.eLpUJW .align-items-sm-start{-webkit-align-items:flex-start !important;-webkit-box-align:flex-start !important;-ms-flex-align:flex-start !important;align-items:flex-start !important;}.eLpUJW .align-items-sm-end{-webkit-align-items:flex-end !important;-webkit-box-align:flex-end !important;-ms-flex-align:flex-end !important;align-items:flex-end !important;}.eLpUJW .align-items-sm-center{-webkit-align-items:center !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important;}.eLpUJW .align-items-sm-baseline{-webkit-align-items:baseline !important;-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important;}.eLpUJW .align-items-sm-stretch{-webkit-align-items:stretch !important;-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important;}.eLpUJW .align-content-sm-start{-webkit-align-content:flex-start !important;-ms-flex-line-pack:start !important;align-content:flex-start !important;}.eLpUJW .align-content-sm-end{-webkit-align-content:flex-end !important;-ms-flex-line-pack:end !important;align-content:flex-end !important;}.eLpUJW .align-content-sm-center{-webkit-align-content:center !important;-ms-flex-line-pack:center !important;align-content:center !important;}.eLpUJW .align-content-sm-between{-webkit-align-content:space-between !important;-ms-flex-line-pack:space-between !important;align-content:space-between !important;}.eLpUJW .align-content-sm-around{-webkit-align-content:space-around !important;-ms-flex-line-pack:space-around !important;align-content:space-around !important;}.eLpUJW .align-content-sm-stretch{-webkit-align-content:stretch !important;-ms-flex-line-pack:stretch !important;align-content:stretch !important;}.eLpUJW .align-self-sm-auto{-webkit-align-self:auto !important;-ms-flex-item-align:auto !important;align-self:auto !important;}.eLpUJW .align-self-sm-start{-webkit-align-self:flex-start !important;-ms-flex-item-align:start !important;align-self:flex-start !important;}.eLpUJW .align-self-sm-end{-webkit-align-self:flex-end !important;-ms-flex-item-align:end !important;align-self:flex-end !important;}.eLpUJW .align-self-sm-center{-webkit-align-self:center !important;-ms-flex-item-align:center !important;align-self:center !important;}.eLpUJW .align-self-sm-baseline{-webkit-align-self:baseline !important;-ms-flex-item-align:baseline !important;align-self:baseline !important;}.eLpUJW .align-self-sm-stretch{-webkit-align-self:stretch !important;-ms-flex-item-align:stretch !important;align-self:stretch !important;}}/*!sc*/
@media (min-width:1152px){.eLpUJW .flex-md-row{-webkit-flex-direction:row !important;-ms-flex-direction:row !important;flex-direction:row !important;}.eLpUJW .flex-md-column{-webkit-flex-direction:column !important;-ms-flex-direction:column !important;flex-direction:column !important;}.eLpUJW .flex-md-row-reverse{-webkit-flex-direction:row-reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important;}.eLpUJW .flex-md-column-reverse{-webkit-flex-direction:column-reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important;}.eLpUJW .flex-md-wrap{-webkit-flex-wrap:wrap !important;-ms-flex-wrap:wrap !important;flex-wrap:wrap !important;}.eLpUJW .flex-md-nowrap{-webkit-flex-wrap:nowrap !important;-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important;}.eLpUJW .flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse !important;-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important;}.eLpUJW .flex-md-fill{-webkit-flex:1 1 auto !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important;}.eLpUJW .flex-md-grow-0{-webkit-box-flex:0 !important;-webkit-flex-grow:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important;}.eLpUJW .flex-md-grow-1{-webkit-box-flex:1 !important;-webkit-flex-grow:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important;}.eLpUJW .flex-md-shrink-0{-webkit-flex-shrink:0 !important;-ms-flex-negative:0 !important;flex-shrink:0 !important;}.eLpUJW .flex-md-shrink-1{-webkit-flex-shrink:1 !important;-ms-flex-negative:1 !important;flex-shrink:1 !important;}.eLpUJW .justify-content-md-start{-webkit-box-pack:start !important;-webkit-justify-content:flex-start !important;-ms-flex-pack:start !important;justify-content:flex-start !important;}.eLpUJW .justify-content-md-end{-webkit-box-pack:end !important;-webkit-justify-content:flex-end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;}.eLpUJW .justify-content-md-center{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}.eLpUJW .justify-content-md-between{-webkit-box-pack:justify !important;-webkit-justify-content:space-between !important;-ms-flex-pack:justify !important;justify-content:space-between !important;}.eLpUJW .justify-content-md-around{-webkit-box-pack:space-around !important;-webkit-justify-content:space-around !important;-ms-flex-pack:space-around !important;justify-content:space-around !important;}.eLpUJW .align-items-md-start{-webkit-align-items:flex-start !important;-webkit-box-align:flex-start !important;-ms-flex-align:flex-start !important;align-items:flex-start !important;}.eLpUJW .align-items-md-end{-webkit-align-items:flex-end !important;-webkit-box-align:flex-end !important;-ms-flex-align:flex-end !important;align-items:flex-end !important;}.eLpUJW .align-items-md-center{-webkit-align-items:center !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important;}.eLpUJW .align-items-md-baseline{-webkit-align-items:baseline !important;-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important;}.eLpUJW .align-items-md-stretch{-webkit-align-items:stretch !important;-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important;}.eLpUJW .align-content-md-start{-webkit-align-content:flex-start !important;-ms-flex-line-pack:start !important;align-content:flex-start !important;}.eLpUJW .align-content-md-end{-webkit-align-content:flex-end !important;-ms-flex-line-pack:end !important;align-content:flex-end !important;}.eLpUJW .align-content-md-center{-webkit-align-content:center !important;-ms-flex-line-pack:center !important;align-content:center !important;}.eLpUJW .align-content-md-between{-webkit-align-content:space-between !important;-ms-flex-line-pack:space-between !important;align-content:space-between !important;}.eLpUJW .align-content-md-around{-webkit-align-content:space-around !important;-ms-flex-line-pack:space-around !important;align-content:space-around !important;}.eLpUJW .align-content-md-stretch{-webkit-align-content:stretch !important;-ms-flex-line-pack:stretch !important;align-content:stretch !important;}.eLpUJW .align-self-md-auto{-webkit-align-self:auto !important;-ms-flex-item-align:auto !important;align-self:auto !important;}.eLpUJW .align-self-md-start{-webkit-align-self:flex-start !important;-ms-flex-item-align:start !important;align-self:flex-start !important;}.eLpUJW .align-self-md-end{-webkit-align-self:flex-end !important;-ms-flex-item-align:end !important;align-self:flex-end !important;}.eLpUJW .align-self-md-center{-webkit-align-self:center !important;-ms-flex-item-align:center !important;align-self:center !important;}.eLpUJW .align-self-md-baseline{-webkit-align-self:baseline !important;-ms-flex-item-align:baseline !important;align-self:baseline !important;}.eLpUJW .align-self-md-stretch{-webkit-align-self:stretch !important;-ms-flex-item-align:stretch !important;align-self:stretch !important;}}/*!sc*/
@media (min-width:1248px){.eLpUJW .flex-lg-row{-webkit-flex-direction:row !important;-ms-flex-direction:row !important;flex-direction:row !important;}.eLpUJW .flex-lg-column{-webkit-flex-direction:column !important;-ms-flex-direction:column !important;flex-direction:column !important;}.eLpUJW .flex-lg-row-reverse{-webkit-flex-direction:row-reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important;}.eLpUJW .flex-lg-column-reverse{-webkit-flex-direction:column-reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important;}.eLpUJW .flex-lg-wrap{-webkit-flex-wrap:wrap !important;-ms-flex-wrap:wrap !important;flex-wrap:wrap !important;}.eLpUJW .flex-lg-nowrap{-webkit-flex-wrap:nowrap !important;-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important;}.eLpUJW .flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse !important;-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important;}.eLpUJW .flex-lg-fill{-webkit-flex:1 1 auto !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important;}.eLpUJW .flex-lg-grow-0{-webkit-box-flex:0 !important;-webkit-flex-grow:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important;}.eLpUJW .flex-lg-grow-1{-webkit-box-flex:1 !important;-webkit-flex-grow:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important;}.eLpUJW .flex-lg-shrink-0{-webkit-flex-shrink:0 !important;-ms-flex-negative:0 !important;flex-shrink:0 !important;}.eLpUJW .flex-lg-shrink-1{-webkit-flex-shrink:1 !important;-ms-flex-negative:1 !important;flex-shrink:1 !important;}.eLpUJW .justify-content-lg-start{-webkit-box-pack:start !important;-webkit-justify-content:flex-start !important;-ms-flex-pack:start !important;justify-content:flex-start !important;}.eLpUJW .justify-content-lg-end{-webkit-box-pack:end !important;-webkit-justify-content:flex-end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;}.eLpUJW .justify-content-lg-center{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}.eLpUJW .justify-content-lg-between{-webkit-box-pack:justify !important;-webkit-justify-content:space-between !important;-ms-flex-pack:justify !important;justify-content:space-between !important;}.eLpUJW .justify-content-lg-around{-webkit-box-pack:space-around !important;-webkit-justify-content:space-around !important;-ms-flex-pack:space-around !important;justify-content:space-around !important;}.eLpUJW .align-items-lg-start{-webkit-align-items:flex-start !important;-webkit-box-align:flex-start !important;-ms-flex-align:flex-start !important;align-items:flex-start !important;}.eLpUJW .align-items-lg-end{-webkit-align-items:flex-end !important;-webkit-box-align:flex-end !important;-ms-flex-align:flex-end !important;align-items:flex-end !important;}.eLpUJW .align-items-lg-center{-webkit-align-items:center !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important;}.eLpUJW .align-items-lg-baseline{-webkit-align-items:baseline !important;-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important;}.eLpUJW .align-items-lg-stretch{-webkit-align-items:stretch !important;-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important;}.eLpUJW .align-content-lg-start{-webkit-align-content:flex-start !important;-ms-flex-line-pack:start !important;align-content:flex-start !important;}.eLpUJW .align-content-lg-end{-webkit-align-content:flex-end !important;-ms-flex-line-pack:end !important;align-content:flex-end !important;}.eLpUJW .align-content-lg-center{-webkit-align-content:center !important;-ms-flex-line-pack:center !important;align-content:center !important;}.eLpUJW .align-content-lg-between{-webkit-align-content:space-between !important;-ms-flex-line-pack:space-between !important;align-content:space-between !important;}.eLpUJW .align-content-lg-around{-webkit-align-content:space-around !important;-ms-flex-line-pack:space-around !important;align-content:space-around !important;}.eLpUJW .align-content-lg-stretch{-webkit-align-content:stretch !important;-ms-flex-line-pack:stretch !important;align-content:stretch !important;}.eLpUJW .align-self-lg-auto{-webkit-align-self:auto !important;-ms-flex-item-align:auto !important;align-self:auto !important;}.eLpUJW .align-self-lg-start{-webkit-align-self:flex-start !important;-ms-flex-item-align:start !important;align-self:flex-start !important;}.eLpUJW .align-self-lg-end{-webkit-align-self:flex-end !important;-ms-flex-item-align:end !important;align-self:flex-end !important;}.eLpUJW .align-self-lg-center{-webkit-align-self:center !important;-ms-flex-item-align:center !important;align-self:center !important;}.eLpUJW .align-self-lg-baseline{-webkit-align-self:baseline !important;-ms-flex-item-align:baseline !important;align-self:baseline !important;}.eLpUJW .align-self-lg-stretch{-webkit-align-self:stretch !important;-ms-flex-item-align:stretch !important;align-self:stretch !important;}}/*!sc*/
@media (min-width:1376px){.eLpUJW .flex-xl-row{-webkit-flex-direction:row !important;-ms-flex-direction:row !important;flex-direction:row !important;}.eLpUJW .flex-xl-column{-webkit-flex-direction:column !important;-ms-flex-direction:column !important;flex-direction:column !important;}.eLpUJW .flex-xl-row-reverse{-webkit-flex-direction:row-reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important;}.eLpUJW .flex-xl-column-reverse{-webkit-flex-direction:column-reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important;}.eLpUJW .flex-xl-wrap{-webkit-flex-wrap:wrap !important;-ms-flex-wrap:wrap !important;flex-wrap:wrap !important;}.eLpUJW .flex-xl-nowrap{-webkit-flex-wrap:nowrap !important;-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important;}.eLpUJW .flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse !important;-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important;}.eLpUJW .flex-xl-fill{-webkit-flex:1 1 auto !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important;}.eLpUJW .flex-xl-grow-0{-webkit-box-flex:0 !important;-webkit-flex-grow:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important;}.eLpUJW .flex-xl-grow-1{-webkit-box-flex:1 !important;-webkit-flex-grow:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important;}.eLpUJW .flex-xl-shrink-0{-webkit-flex-shrink:0 !important;-ms-flex-negative:0 !important;flex-shrink:0 !important;}.eLpUJW .flex-xl-shrink-1{-webkit-flex-shrink:1 !important;-ms-flex-negative:1 !important;flex-shrink:1 !important;}.eLpUJW .justify-content-xl-start{-webkit-box-pack:start !important;-webkit-justify-content:flex-start !important;-ms-flex-pack:start !important;justify-content:flex-start !important;}.eLpUJW .justify-content-xl-end{-webkit-box-pack:end !important;-webkit-justify-content:flex-end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;}.eLpUJW .justify-content-xl-center{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}.eLpUJW .justify-content-xl-between{-webkit-box-pack:justify !important;-webkit-justify-content:space-between !important;-ms-flex-pack:justify !important;justify-content:space-between !important;}.eLpUJW .justify-content-xl-around{-webkit-box-pack:space-around !important;-webkit-justify-content:space-around !important;-ms-flex-pack:space-around !important;justify-content:space-around !important;}.eLpUJW .align-items-xl-start{-webkit-align-items:flex-start !important;-webkit-box-align:flex-start !important;-ms-flex-align:flex-start !important;align-items:flex-start !important;}.eLpUJW .align-items-xl-end{-webkit-align-items:flex-end !important;-webkit-box-align:flex-end !important;-ms-flex-align:flex-end !important;align-items:flex-end !important;}.eLpUJW .align-items-xl-center{-webkit-align-items:center !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important;}.eLpUJW .align-items-xl-baseline{-webkit-align-items:baseline !important;-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important;}.eLpUJW .align-items-xl-stretch{-webkit-align-items:stretch !important;-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important;}.eLpUJW .align-content-xl-start{-webkit-align-content:flex-start !important;-ms-flex-line-pack:start !important;align-content:flex-start !important;}.eLpUJW .align-content-xl-end{-webkit-align-content:flex-end !important;-ms-flex-line-pack:end !important;align-content:flex-end !important;}.eLpUJW .align-content-xl-center{-webkit-align-content:center !important;-ms-flex-line-pack:center !important;align-content:center !important;}.eLpUJW .align-content-xl-between{-webkit-align-content:space-between !important;-ms-flex-line-pack:space-between !important;align-content:space-between !important;}.eLpUJW .align-content-xl-around{-webkit-align-content:space-around !important;-ms-flex-line-pack:space-around !important;align-content:space-around !important;}.eLpUJW .align-content-xl-stretch{-webkit-align-content:stretch !important;-ms-flex-line-pack:stretch !important;align-content:stretch !important;}.eLpUJW .align-self-xl-auto{-webkit-align-self:auto !important;-ms-flex-item-align:auto !important;align-self:auto !important;}.eLpUJW .align-self-xl-start{-webkit-align-self:flex-start !important;-ms-flex-item-align:start !important;align-self:flex-start !important;}.eLpUJW .align-self-xl-end{-webkit-align-self:flex-end !important;-ms-flex-item-align:end !important;align-self:flex-end !important;}.eLpUJW .align-self-xl-center{-webkit-align-self:center !important;-ms-flex-item-align:center !important;align-self:center !important;}.eLpUJW .align-self-xl-baseline{-webkit-align-self:baseline !important;-ms-flex-item-align:baseline !important;align-self:baseline !important;}.eLpUJW .align-self-xl-stretch{-webkit-align-self:stretch !important;-ms-flex-item-align:stretch !important;align-self:stretch !important;}}/*!sc*/
data-styled.g41[id="sc-fzqARJ"]{content:"eLpUJW,"}/*!sc*/
.fCkJVF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;list-style:none;margin:0;padding:0;}/*!sc*/
data-styled.g51[id="sc-fzqBkg"]{content:"fCkJVF,"}/*!sc*/
.gQAZOF{background:transparent;border:0;font-weight:600;font-family:inherit;font-size:14px;padding:1.8rem 1rem 1.8rem 1rem;color:#222531;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:color 250ms ease;transition:color 250ms ease;cursor:pointer;position:relative;z-index:2;}/*!sc*/
.gQAZOF:hover{outline:none;color:#3861FB;}/*!sc*/
.gQAZOF:focus{outline:none;}/*!sc*/
data-styled.g53[id="sc-fzoxKX"]{content:"gQAZOF,"}/*!sc*/
.kNKLJw{position:relative;}/*!sc*/
data-styled.g54[id="sc-fzoKki"]{content:"kNKLJw,"}/*!sc*/
.hfPoTr{position:absolute;left:calc(50% + 100px);-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);-webkit-perspective:1500px;-moz-perspective:1500px;-ms-perspective:1500px;perspective:1500px;z-index:999;}/*!sc*/
data-styled.g55[id="sc-fzoYkl"]{content:"hfPoTr,"}/*!sc*/
.BewUF{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-driection:row;-ms-flex-driection:row;flex-driection:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.BewUF a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.BewUF .coin-logo{height:24px;width:24px;border-radius:12px;}/*!sc*/
data-styled.g68[id="sc-fznLPX"]{content:"BewUF,"}/*!sc*/
.cbJhSy{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}/*!sc*/
.cbJhSy a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.cbJhSy p{font-size:14px;margin:0 0 0 12px;line-height:16px;}/*!sc*/
.cbJhSy .coin-item-symbol{margin:0 0 0 6px;font-size:12px;}/*!sc*/
@media screen and (min-width:768px){.cbJhSy{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.cbJhSy p{margin:0 0 0 5px;line-height:24px;}.cbJhSy .coin-item-symbol{font-size:14px;}}/*!sc*/
data-styled.g69[id="sc-fzoaKM"]{content:"cbJhSy,"}/*!sc*/
.gHzJiR{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g70[id="sc-fzomuh"]{content:"gHzJiR,"}/*!sc*/
.kwdPny{border-radius:4px;padding:0px 6px;display:inline-block;font-size:12px;background:#EFF2F5;margin-left:12px;color:#58667E;}/*!sc*/
@media screen and (min-width:768px){.kwdPny{display:none;}}/*!sc*/
data-styled.g71[id="sc-fzqAui"]{content:"kwdPny,"}/*!sc*/
.YdPrA{height:6px;border-radius:3px;background:#EFF2F5;position:relative;width:160px;}/*!sc*/
data-styled.g87[id="sc-fznzqM"]{content:"YdPrA,"}/*!sc*/
.hTcCKn{height:6px;border-radius:3px;background:#CFD6E4;width:143px;position:absolute;top:0;left:0;}/*!sc*/
.hTcEKp{height:6px;border-radius:3px;background:#CFD6E4;width:114px;position:absolute;top:0;left:0;}/*!sc*/
.hTcFaR{height:6px;border-radius:3px;background:#CFD6E4;width:145px;position:absolute;top:0;left:0;}/*!sc*/
.cGZXtd{height:6px;border-radius:3px;background:#CFD6E4;width:73px;position:absolute;top:0;left:0;}/*!sc*/
.hTcEoN{height:6px;border-radius:3px;background:#CFD6E4;width:127px;position:absolute;top:0;left:0;}/*!sc*/
.cGZXuR{height:6px;border-radius:3px;background:#CFD6E4;width:66px;position:absolute;top:0;left:0;}/*!sc*/
data-styled.g88[id="sc-fznOgF"]{content:"hTcCKn,hTcEKp,hTcFaR,cGZXtd,hTcEoN,cGZXuR,"}/*!sc*/
.cGmhlU{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}/*!sc*/
.cGmhlU a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g89[id="sc-fznYue"]{content:"cGmhlU,"}/*!sc*/
.brDbgg{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:4px;}/*!sc*/
.brDbgg a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g90[id="sc-fzonjX"]{content:"brDbgg,"}/*!sc*/
.lewZOv{display:inline-block;padding-top:4px;}/*!sc*/
data-styled.g93[id="sc-fzoCCn"]{content:"lewZOv,"}/*!sc*/
.jPpwSF{box-sizing:border-box;margin:0;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#EFF2F5;border-radius:8px;outline:0;font-weight:600;cursor:pointer;color:#000000;padding:5px 8px;font-size:12px;line-height:22px;}/*!sc*/
.jPpwSF a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g95[id="sc-fzpdbB"]{content:"jPpwSF,"}/*!sc*/
.ekttti{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding:0 8px 0 0;}/*!sc*/
data-styled.g107[id="sc-fznBMq"]{content:"ekttti,"}/*!sc*/
.dJmEVA{box-sizing:border-box;width:304px;background:#FFF;border-radius:8px;padding:13px 16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;cursor:pointer;}/*!sc*/
data-styled.g108[id="sc-fznNvL"]{content:"dJmEVA,"}/*!sc*/
.dDnRxM{height:64px;width:64px;min-width:64px;border-radius:16px;overflow:hidden;background-image:url("https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/603dd5aeedc95900191eadf4/1614666484628.png");background-size:cover;background-position:center center;}/*!sc*/
.jDLPo{height:64px;width:64px;min-width:64px;border-radius:16px;overflow:hidden;background-image:url("https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/60386d82bc6ea500157b34fb/1614319262237.png");background-size:cover;background-position:center center;}/*!sc*/
.cjaGHS{height:64px;width:64px;min-width:64px;border-radius:16px;overflow:hidden;background-image:url("https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/6038d61e3e919b0013d44cf2/1614337604165.png");background-size:cover;background-position:center center;}/*!sc*/
data-styled.g109[id="sc-fzocqA"]{content:"dDnRxM,jDLPo,cjaGHS,"}/*!sc*/
.fjLydT{margin-left:16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
data-styled.g110[id="sc-fzonZV"]{content:"fjLydT,"}/*!sc*/
.ifuegI{color:#646B80;font-size:12px;margin-bottom:3px;}/*!sc*/
data-styled.g111[id="sc-fzqyOu"]{content:"ifuegI,"}/*!sc*/
.hKVgLq{color:#000;white-space:pre-wrap;font-size:14px;font-weight:500;line-height:1.4;}/*!sc*/
data-styled.g112[id="sc-fzqKxP"]{content:"hKVgLq,"}/*!sc*/
.fsuEer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;padding:8px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;}/*!sc*/
data-styled.g117[id="sc-oTbqq"]{content:"fsuEer,"}/*!sc*/
.eqYpxV{height:30px;width:30px;min-width:30px;background-image:url("https://s2.coinmarketcap.com/static/cloud/img/header-banner/cryptocom.png?_=29bbdee");background-size:cover;background-position:center center;margin-right:10px;}/*!sc*/
data-styled.g118[id="sc-paXsP"]{content:"eqYpxV,"}/*!sc*/
.dAvxTh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
data-styled.g119[id="sc-pjSSY"]{content:"dAvxTh,"}/*!sc*/
.hQWxaP{color:#000;white-space:pre-wrap;font-size:14px;font-weight:500;line-height:21px;}/*!sc*/
data-styled.g120[id="sc-prOVx"]{content:"hQWxaP,"}/*!sc*/
.frETCJ{color:#646B80;white-space:pre-wrap;font-size:14px;line-height:21px;}/*!sc*/
data-styled.g121[id="sc-qQmou"]{content:"frETCJ,"}/*!sc*/
.gdJhvk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.gdJhvk .s-area{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:row;-ms-flex:row;flex:row;color:#A6B0C3;margin-top:4px;}/*!sc*/
.gdJhvk .s-text{color:#A6B0C3;font-weight:600;}/*!sc*/
data-styled.g122[id="sc-qYiqT"]{content:"gdJhvk,"}/*!sc*/
.hCKhjF{display:block;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;}/*!sc*/
data-styled.g136[id="sc-pZaHX"]{content:"hCKhjF,"}/*!sc*/
.hXGkGv{margin:0;padding:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;list-style:none;}/*!sc*/
data-styled.g137[id="sc-oTBUA"]{content:"hXGkGv,"}/*!sc*/
.bSZjap{cursor:pointer;}/*!sc*/
.bSZjap:hover > div > span{color:#3861FB;}/*!sc*/
data-styled.g138[id="sc-pbxSd"]{content:"bSZjap,"}/*!sc*/
.dmrpMS:hover > a > div > span{color:#3861FB;}/*!sc*/
data-styled.g139[id="sc-pjstK"]{content:"dmrpMS,"}/*!sc*/
.fpBoEr{padding:20px 14px;}/*!sc*/
.fpBoEr span{-webkit-transition:0.3s;transition:0.3s;}/*!sc*/
data-styled.g140[id="sc-prorn"]{content:"fpBoEr,"}/*!sc*/
.eALoKW{font-size:11px;color:#58667E;margin-right:16px;white-space:nowrap;}/*!sc*/
.eALoKW a{-webkit-text-decoration:none;text-decoration:none;color:#3861FB;font-weight:500;}/*!sc*/
.eALoKW:last-of-type{margin-right:0;}/*!sc*/
data-styled.g148[id="sc-12ja2s9-0"]{content:"eALoKW,"}/*!sc*/
.iwazsF{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#FFFFFF;border-radius:5px;border:none;color:#222531;cursor:pointer;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;font-size:12px;font-weight:500;height:100%;line-height:12px;margin:0;padding:5px;vertical-align:baseline;white-space:nowrap;}/*!sc*/
.iwazsF:focus,.iwazsF:hover{background-color:#EFF2F5;outline:0;}/*!sc*/
data-styled.g149[id="sc-10o4ja6-0"]{content:"iwazsF,"}/*!sc*/
.ihKvrC{background-image:url(https://s2.coinmarketcap.com/static/cloud/img/fiat-flags/USD.svg);background-position:center;background-size:cover;background-repeat:no-repeat;display:block;height:15px;width:15px;border:1px solid #E4E7EB;border-radius:50%;}/*!sc*/
data-styled.g150[id="sc-1ta5cl2-0"]{content:"ihKvrC,"}/*!sc*/
.ejAOOE{margin:2px 0 0 4px;}/*!sc*/
data-styled.g161[id="sc-1l1794m-0"]{content:"ejAOOE,"}/*!sc*/
.jVkEMh{font-weight:600;}/*!sc*/
data-styled.g162[id="sc-1l1794m-1"]{content:"jVkEMh,"}/*!sc*/
.bMHyH{margin:2px 0 0 4px;}/*!sc*/
data-styled.g165[id="sc-1wnc593-0"]{content:"bMHyH,"}/*!sc*/
.bBcNle{font-weight:600;margin-left:6px;}/*!sc*/
data-styled.g166[id="sc-1wnc593-1"]{content:"bBcNle,"}/*!sc*/
.nItQG{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-left:auto;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.nItQG a{color:#222531;-webkit-text-decoration:none;text-decoration:none;vertical-align:bottom;}/*!sc*/
.nItQG a:focus,.nItQG a:hover{color:#3861FB;}/*!sc*/
.nItQG .right-section{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.nItQG .nav-item{border-right:1px solid #EFF2F5;white-space:nowrap;}/*!sc*/
data-styled.g167[id="gqd5b8-0"]{content:"nItQG,"}/*!sc*/
.kznmCF .cmc-popover__trigger{height:27px;margin-right:6px;}/*!sc*/
.kznmCF .cmc-popover__dropdown{background-color:#FFFFFF;border-radius:4px;border:1px solid #F8FAFD;box-shadow:0 2px 10px 0 #EFF2F5;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;padding:15px;width:291px;}/*!sc*/
data-styled.g168[id="gqd5b8-1"]{content:"kznmCF,"}/*!sc*/
.fEixBa .cmc-popover__trigger{height:27px;margin-right:6px;}/*!sc*/
.fEixBa .cmc-popover__dropdown{background-color:#FFFFFF;border-radius:4px;border:1px solid #F8FAFD;box-shadow:0 2px 10px 0 #EFF2F5;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;padding:15px;width:291px;}/*!sc*/
.fEixBa .cmc-popover__dropdown{width:200px;}/*!sc*/
data-styled.g169[id="gqd5b8-2"]{content:"fEixBa,"}/*!sc*/
.ljymAU{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#FFFFFF;border-radius:5px;border:none;color:#222531;cursor:pointer;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;font-size:12px;font-weight:500;height:100%;line-height:12px;margin:0;padding:5px;vertical-align:baseline;white-space:nowrap;height:27px;width:22px;}/*!sc*/
.ljymAU:focus,.ljymAU:hover{background-color:#EFF2F5;outline:0;}/*!sc*/
data-styled.g173[id="gqd5b8-6"]{content:"ljymAU,"}/*!sc*/
.dOnegn{border-bottom:1px solid #EFF2F5;font-size:12px;font-weight:500;line-height:16px;padding-top:4px;padding-bottom:4px;position:relative;z-index:931;}/*!sc*/
.dOnegn .container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;}/*!sc*/
@media (max-width:1199.98px){.dOnegn{font-size:11px;}}/*!sc*/
data-styled.g174[id="sc-33i2yg-0"]{content:"dOnegn,"}/*!sc*/
.dZMOCN{width:36px;height:36px;border-radius:18px;display:inline-block;line-height:40px;}/*!sc*/
.dZMOCN:hover{background:#F0F6FF;}/*!sc*/
data-styled.g179[id="h9xs45-0"]{content:"dZMOCN,"}/*!sc*/
.kJsxWS{width:40px;height:40px;position:absolute;top:-3px;right:-20px;}/*!sc*/
.kJsxWS .spinner{width:6px;height:6px;position:absolute;top:16px;left:16px;background-color:#3861FB;border-radius:100%;}/*!sc*/
.kJsxWS .spinner--animation{width:6px;height:6px;top:16px;left:16px;}/*!sc*/
.kJsxWS .spinner-outer{width:14px;height:14px;position:absolute;top:12px;left:12px;background-color:#3861FB;border-radius:100%;-webkit-animation:diEKVC 1.6s infinite ease-in-out;animation:diEKVC 1.6s infinite ease-in-out;}/*!sc*/
data-styled.g182[id="sc-188mhkv-0"]{content:"kJsxWS,"}/*!sc*/
.fMhTiy{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;padding-left:20px;}/*!sc*/
data-styled.g183[id="sc-26sca8-0"]{content:"fMhTiy,"}/*!sc*/
.fQPFVV{background-color:#EFF2F5;color:#A6B0C3;border-radius:8px;padding:8px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;margin-left:8px;}/*!sc*/
data-styled.g184[id="q0coyt-0"]{content:"fQPFVV,"}/*!sc*/
.fOZYHf{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:600;font-size:12px;margin-left:4px;width:100px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}/*!sc*/
data-styled.g185[id="q0coyt-1"]{content:"fOZYHf,"}/*!sc*/
.kqdKYQ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:5px 15px;max-width:1400px;margin:0 auto;}/*!sc*/
.kqdKYQ .cmc-logo{width:168px;height:28px;}/*!sc*/
.kqdKYQ button{height:36px;white-space:nowrap;}/*!sc*/
.kqdKYQ > a > button{margin:0 8px;}/*!sc*/
.kqdKYQ li button{padding:20px 16px;height:auto;}/*!sc*/
data-styled.g212[id="sc-1q2q8hd-0"]{content:"kqdKYQ,"}/*!sc*/
.jOGBiJ{padding-left:10px;}/*!sc*/
.jOGBiJ li button{padding:12.5px 0px;}/*!sc*/
.jOGBiJ li > div{left:calc(-200%) !important;}/*!sc*/
.jOGBiJ li > div > div div:nth-child(1){left:185px !important;}/*!sc*/
data-styled.g213[id="sc-1q2q8hd-1"]{content:"jOGBiJ,"}/*!sc*/
.kMOeoA{display:inline-block;position:relative;color:#000;}/*!sc*/
.kMOeoA .red-dot{width:12px;height:12px;background:#ea3943;border-radius:10px;position:absolute;top:9px;border:3px solid #fff;right:3px;}/*!sc*/
data-styled.g214[id="sc-1q2q8hd-2"]{content:"kMOeoA,"}/*!sc*/
@media (max-width:1199.98px){.iGclcX{display:none;}}/*!sc*/
data-styled.g215[id="xwtbyq-0"]{content:"iGclcX,"}/*!sc*/
.eiYhYM{height:1px;background-color:#EFF2F5;}/*!sc*/
data-styled.g216[id="xwtbyq-1"]{content:"eiYhYM,"}/*!sc*/
.ifvooB{background-color:#FFF;border-bottom:1px solid rgba(0,0,0,0.1);font-size:12px;font-weight:500;line-height:16px;position:relative;z-index:930;}/*!sc*/
.ifvooB .container{padding-left:0;padding-right:0;position:relative;}/*!sc*/
.ifvooB .cmc-global-stats__fade{background-image:linear-gradient(to right,rgba(255,255,255,0),rgba(255,255,255,1) 100%);height:100%;pointer-events:none;position:absolute;right:0;top:0;width:50px;z-index:1;}/*!sc*/
.ifvooB .cmc-global-stats__content{padding-left:16px;padding-right:16px;padding-top:9px;padding-bottom:9px;position:relative;white-space:nowrap;overflow-x:auto;overflow-y:hidden;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;-ms-overflow-style:none;}/*!sc*/
.ifvooB .cmc-global-stats__content::-webkit-scrollbar{display:none;}/*!sc*/
@media screen and (min-device-width:1400px){.ifvooB .cmc-global-stats__content::-webkit-scrollbar{height:4px;background-color:transparent;}.ifvooB .cmc-global-stats__content::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.3);border-radius:2px;}}/*!sc*/
.ifvooB .cmc-global-stats__inner-content:after{display:inline-block;content:' ';width:30px;}/*!sc*/
data-styled.g217[id="sc-18ghxad-0"]{content:"ifvooB,"}/*!sc*/
.iFlDJJ{cursor:pointer;height:24px;line-height:24px;margin-left:15px;}/*!sc*/
data-styled.g218[id="sc-10dhc7s-0"]{content:"iFlDJJ,"}/*!sc*/
.dPLAIJ{background-color:#FFF;border-bottom:1px solid rgba(0,0,0,0.1);color:#000;font-size:14px;font-weight:500;}/*!sc*/
.dPLAIJ .container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;padding:15px;}/*!sc*/
data-styled.g219[id="sc-10dhc7s-1"]{content:"dPLAIJ,"}/*!sc*/
.hTZeZX{height:30px;margin-right:auto;}/*!sc*/
.hTZeZX .cmc-logo{width:175px;height:30px;}/*!sc*/
data-styled.g220[id="sc-10dhc7s-2"]{content:"hTZeZX,"}/*!sc*/
.iuLgSq{display:block;}/*!sc*/
data-styled.g221[id="swwyas-0"]{content:"iuLgSq,"}/*!sc*/
.brNCtW{padding:0 8px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;height:48px;color:#3861FB;-webkit-transition:0.2s;transition:0.2s;border-bottom:1px solid #EFF2F5;}/*!sc*/
.brNCtW p{color:#3861FB;-webkit-transition:0.2s;transition:0.2s;}/*!sc*/
.brNCtW svg{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);-webkit-transition:0.36s;transition:0.36s;}/*!sc*/
.brNCtW a{color:var(--text-color) !important;}/*!sc*/
data-styled.g222[id="swwyas-1"]{content:"brNCtW,"}/*!sc*/
.dzLjvV{padding:0 8px;-webkit-transition:height 0.36s;transition:height 0.36s;overflow-y:hidden;}/*!sc*/
.dzLjvV .swwyas-2:last-of-type{margin-top:20px;}/*!sc*/
data-styled.g224[id="swwyas-3"]{content:"dzLjvV,"}/*!sc*/
.fiLTGu{padding:4px 0 10px 0;}/*!sc*/
data-styled.g225[id="swwyas-4"]{content:"fiLTGu,"}/*!sc*/
.dvzNTs{padding:10px 0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g227[id="swwyas-6"]{content:"dvzNTs,"}/*!sc*/
.nLWjZ{width:28px;height:28px;}/*!sc*/
.nLWjZ img,.nLWjZ svg{width:100%;height:100%;}/*!sc*/
data-styled.g228[id="swwyas-7"]{content:"nLWjZ,"}/*!sc*/
.lhmcUg{margin:8px 0;width:100%;height:1px;background-color:#EFF2F5;}/*!sc*/
data-styled.g229[id="swwyas-8"]{content:"lhmcUg,"}/*!sc*/
.vEeCz{margin-left:4px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.vEeCz svg{width:18px;}/*!sc*/
data-styled.g230[id="swwyas-9"]{content:"vEeCz,"}/*!sc*/
.kgfbam{background-color:#EBEFF2;border:1px solid #EBEFF2;border-radius:5px;color:#000;font-size:12px;font-weight:500;line-height:12px;padding:10px;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:100%;}/*!sc*/
.kgfbam:focus,.kgfbam:hover{background-color:#FFF;border-color:#4878FF;outline:0;}/*!sc*/
data-styled.g231[id="lbfhry-0"]{content:"kgfbam,"}/*!sc*/
.eJUUCc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:30px -5px 24px;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}/*!sc*/
data-styled.g232[id="lbfhry-1"]{content:"eJUUCc,"}/*!sc*/
.cqYXSa{-webkit-flex:1 0;-ms-flex:1 0;flex:1 0;margin:0 5px;}/*!sc*/
.cqYXSa .cmc-popover__trigger{margin-right:6px;}/*!sc*/
.cqYXSa .cmc-popover__dropdown{background-color:#FFF;border-radius:4px;border:1px solid #E4E7EB;box-shadow:0 2px 10px 0 rgba(0,0,0,0.1);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;padding:15px;width:291px;}/*!sc*/
@media (max-width:767.98px){.cqYXSa .cmc-popover__dropdown{-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;width:100%;height:100%;-webkit-transform:none !important;-ms-transform:none !important;transform:none !important;z-index:100000;}.cqYXSa .cmc-popover__dropdown > form{box-shadow:0px 1px 2px rgba(128,138,157,0.12),0px 8px 32px rgba(128,138,157,0.24);margin-top:-15px;margin-left:-15px;margin-right:-15px;width:calc(100% + 30px);padding:22px;position:relative;background:var(--color-primary-white);z-index:1;}.cqYXSa .cmc-popover__dropdown > form::before{content:'Select Language';display:block;width:100%;font-family:Inter;font-size:16px;font-weight:600;text-align:center;margin-bottom:16px;}.cqYXSa .cmc-popover__dropdown > form::after{content:'X';display:block;font-family:sans-serif;color:var(--info-icon-color);position:absolute;right:22px;top:22px;font-size:1.2em;}.cqYXSa .cmc-popover__dropdown > div{height:100%;padding-top:120px;position:absolute;max-height:100%;padding-bottom:16px;}}/*!sc*/
data-styled.g233[id="lbfhry-2"]{content:"cqYXSa,"}/*!sc*/
.ffesPn{-webkit-flex:1 0;-ms-flex:1 0;flex:1 0;margin:0 5px;}/*!sc*/
.ffesPn .cmc-popover__trigger{margin-right:6px;}/*!sc*/
.ffesPn .cmc-popover__dropdown{background-color:#FFF;border-radius:4px;border:1px solid #E4E7EB;box-shadow:0 2px 10px 0 rgba(0,0,0,0.1);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;padding:15px;width:291px;}/*!sc*/
@media (max-width:767.98px){.ffesPn .cmc-popover__dropdown{-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;width:100%;height:100%;-webkit-transform:none !important;-ms-transform:none !important;transform:none !important;z-index:100000;}.ffesPn .cmc-popover__dropdown > form{box-shadow:0px 1px 2px rgba(128,138,157,0.12),0px 8px 32px rgba(128,138,157,0.24);margin-top:-15px;margin-left:-15px;margin-right:-15px;width:calc(100% + 30px);padding:22px;position:relative;background:var(--color-primary-white);z-index:1;}.ffesPn .cmc-popover__dropdown > form::before{content:'Select Language';display:block;width:100%;font-family:Inter;font-size:16px;font-weight:600;text-align:center;margin-bottom:16px;}.ffesPn .cmc-popover__dropdown > form::after{content:'X';display:block;font-family:sans-serif;color:var(--info-icon-color);position:absolute;right:22px;top:22px;font-size:1.2em;}.ffesPn .cmc-popover__dropdown > div{height:100%;padding-top:120px;position:absolute;max-height:100%;padding-bottom:16px;}}/*!sc*/
@media (max-width:767.98px){.ffesPn .cmc-popover__dropdown > form::before{content:'Select Currency';}}/*!sc*/
data-styled.g234[id="lbfhry-3"]{content:"ffesPn,"}/*!sc*/
.kFpHDG{-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;margin:0 5px;}/*!sc*/
data-styled.g238[id="lbfhry-7"]{content:"kFpHDG,"}/*!sc*/
.gWEyHG{background-color:#EBEFF2;border:1px solid #EBEFF2;border-radius:5px;color:#000;font-size:12px;font-weight:500;line-height:12px;padding:10px;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;}/*!sc*/
.gWEyHG:focus,.gWEyHG:hover{background-color:#FFF;border-color:#4878FF;outline:0;}/*!sc*/
data-styled.g239[id="lbfhry-8"]{content:"gWEyHG,"}/*!sc*/
.leTUev{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;height:60px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 16px;background-color:#FFFFFF;position:relative;box-shadow:0px 8px 32px rgba(128,138,157,0.12),0px 1px 2px rgba(128,138,157,0.08);z-index:934;}/*!sc*/
data-styled.g240[id="sc-1srp8s9-0"]{content:"leTUev,"}/*!sc*/
.OfwFQ{height:28px;}/*!sc*/
.OfwFQ .cmc-logo{height:28px;width:168px;}/*!sc*/
data-styled.g241[id="sc-1srp8s9-1"]{content:"OfwFQ,"}/*!sc*/
.iyGLzw{padding:8px 16px;height:calc(100% - 60px);overflow:auto;}/*!sc*/
data-styled.g242[id="of8kjr-0"]{content:"iyGLzw,"}/*!sc*/
.fWFYct{font-size:16px;font-weight:600;line-height:16px;list-style-type:none;padding-left:0;}/*!sc*/
data-styled.g243[id="of8kjr-1"]{content:"fWFYct,"}/*!sc*/
.cCfPRT{padding:0 8px;color:#222531;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;cursor:pointer;height:48px;border-bottom:1px solid #EFF2F5;}/*!sc*/
.cCfPRT > a{color:#222531;height:auto;-webkit-text-decoration:none;text-decoration:none;width:100%;}/*!sc*/
.cCfPRT > a:hover{color:#222531;}/*!sc*/
.cCfPRT .uikit-icon-adjust{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.cCfPRT .red-dot{margin-left:8px;display:inline-block;width:8px;height:8px;border-radius:8px;background:#ea3943;}/*!sc*/
data-styled.g244[id="of8kjr-2"]{content:"cCfPRT,"}/*!sc*/
.gZSKzh{text-align:center;line-height:2em;}/*!sc*/
.gZSKzh hr{border-color:#EBEFF2;margin:15px 0 20px;}/*!sc*/
data-styled.g245[id="of8kjr-3"]{content:"gZSKzh,"}/*!sc*/
.fmHBpc{font-size:12px;font-weight:600;line-height:12px;}/*!sc*/
.fmHBpc::after{content:'•';margin:0 8px;}/*!sc*/
.fmHBpc:last-of-type::after{content:'';margin:0;}/*!sc*/
data-styled.g246[id="of8kjr-4"]{content:"fmHBpc,"}/*!sc*/
.dqwTJv{color:#58667E;}/*!sc*/
.dqwTJv:hover{color:#4878FF;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g247[id="of8kjr-5"]{content:"dqwTJv,"}/*!sc*/
.cKzWZG{display:inline-block;height:18px;width:18px;margin-right:20px;}/*!sc*/
data-styled.g248[id="of8kjr-6"]{content:"cKzWZG,"}/*!sc*/
.lbjAWJ{color:#58667E;font-size:25px;line-height:25px;}/*!sc*/
.lbjAWJ:hover{color:#4878FF;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.lbjAWJ:last-of-type{margin-right:0;}/*!sc*/
data-styled.g249[id="of8kjr-7"]{content:"lbjAWJ,"}/*!sc*/
.biWqMi{height:100%;background-color:#FFFFFF;}/*!sc*/
.biWqMi .mainmenu-enter-active{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);}/*!sc*/
.biWqMi .mainmenu-enter-done{-webkit-transform:translateX(-100px);-ms-transform:translateX(-100px);transform:translateX(-100px);-webkit-transition:-webkit-transform 0.2s ease;-webkit-transition:transform 0.2s ease;transition:transform 0.2s ease;}/*!sc*/
.biWqMi .mainmenu-exit-active{-webkit-transform:translateX(-100px);-ms-transform:translateX(-100px);transform:translateX(-100px);}/*!sc*/
.biWqMi .mainmenu-exit-done{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);-webkit-transition:-webkit-transform 0.2s ease;-webkit-transition:transform 0.2s ease;transition:transform 0.2s ease;}/*!sc*/
data-styled.g250[id="of8kjr-8"]{content:"biWqMi,"}/*!sc*/
.cOzvm{position:fixed;height:100%;width:100%;top:0;z-index:932;color:#222531;right:100%;-webkit-transition:right 0.2s ease;transition:right 0.2s ease;}/*!sc*/
data-styled.g260[id="jz3180-1"]{content:"cOzvm,"}/*!sc*/
@media (min-width:1200px){.gjGEuR:not(.cmc-header-mobile-only){display:none;}}/*!sc*/
data-styled.g261[id="sc-1l9306o-0"]{content:"gjGEuR,"}/*!sc*/
.fLfsZi{position:relative;}/*!sc*/
data-styled.g270[id="sc-1ojz83d-0"]{content:"fLfsZi,"}/*!sc*/
@media (min-width:1376px){.cyTcBl .grid{max-width:1402px;}}/*!sc*/
.cyTcBl .cmc-body-wrapper{background:linear-gradient( 180deg,#F8FAFD 0%,rgba(248,250,253,0) 413px );}/*!sc*/
.cyTcBl .full-width-layout{padding:0;max-width:100%;}/*!sc*/
data-styled.g271[id="sc-1ojz83d-1"]{content:"cyTcBl,"}/*!sc*/
.hOKkUo{position:fixed;bottom:0;right:0;visibility:hidden;width:100%;z-index:930;}/*!sc*/
data-styled.g272[id="sc-1ojz83d-2"]{content:"hOKkUo,"}/*!sc*/
.dZrwAR{margin-left:3px;vertical-align:middle;line-height:0;}/*!sc*/
.dZrwAR span[class^='icon']:before{vertical-align:middle;margin-bottom:4px;}/*!sc*/
@media (max-width:991px){.dZrwAR{display:none;}}/*!sc*/
data-styled.g276[id="rqf1px-2"]{content:"dZrwAR,"}/*!sc*/
.gClTFY span[class^='icon']{margin-right:4px;}/*!sc*/
data-styled.g280[id="sc-1v2ivon-0"]{content:"gClTFY,"}/*!sc*/
@font-face{font-family:'Inter';font-style:normal;font-weight:400;src:url('https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Regular-new.woff2') format('woff2'),url('https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Regular-new.woff') format('woff');font-display:swap;}/*!sc*/
@font-face{font-family:'Inter';font-style:normal;font-weight:500;src:url('https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Medium-new.woff2') format('woff2'),url('https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Medium-new.woff') format('woff');font-display:swap;}/*!sc*/
@font-face{font-family:'Inter';font-style:normal;font-weight:600;src:url('https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-SemiBold-new.woff2') format('woff2'),url('https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-SemiBold-new.woff') format('woff');font-display:swap;}/*!sc*/
@font-face{font-family:'Inter';font-style:normal;font-weight:700;src:url('https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Bold-new.woff2') format('woff2'),url('https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Bold-new.woff') format('woff');font-display:swap;}/*!sc*/
@font-face{font-family:'Inter';font-style:normal;font-weight:900;src:url('https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Black-new.woff2') format('woff2'),url('https://s2.coinmarketcap.com/static/cloud/fonts/inter/Inter-Black-new.woff') format('woff');font-display:swap;}/*!sc*/
*,*:before,*:after{box-sizing:border-box;border-spacing:0px;}/*!sc*/
html,body,#__next{padding:0;margin:0;}/*!sc*/
body{background:#fff;color:#000;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-family:Inter,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Helvetica,Arial,sans-serif;font-size:15px;line-height:1.5em;vertical-align:baseline;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-height:100vh;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;font-smoothing:antialiased;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}/*!sc*/
p{font-size:15px;line-height:24px;margin-bottom:12px;}/*!sc*/
.cmc--change-positive{color:#009e73;}/*!sc*/
.cmc--change-negative{color:#d94040;}/*!sc*/
.container{width:100%;max-width:1400px;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto;}/*!sc*/
@media (min-width:768px){.container{width:95%;}}/*!sc*/
.dropdown-toggle::after{margin-left:0.355em;vertical-align:0.155em;}/*!sc*/
[pointer-events='none']{pointer-events:none;}/*!sc*/
ul,ol{list-style-type:none;margin:0;padding:0;}/*!sc*/
#nprogress .bar{background:#4878ff;height:5px;}/*!sc*/
.bp3-overlay-open .bp3-transition-container{z-index:920;}/*!sc*/
a,a:not([href]):not([tabindex]){color:#3861FB;-webkit-text-decoration:none;text-decoration:none;cursor:pointer;}/*!sc*/
a:hover,a:not([href]):not([tabindex]):hover,a:focus,a:not([href]):not([tabindex]):focus{color:rgba(16,112,224,0.85);-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
a:active,a:not([href]):not([tabindex]):active,a:hover,a:not([href]):not([tabindex]):hover{outline:0;}/*!sc*/
hr{border:0 none;height:1px;background-color:#f5f7f8;margin:0 0 24px;}/*!sc*/
.cmc-bottom-margin-1x{margin-bottom:24px;}/*!sc*/
.cmc-bottom-margin-2x{margin-bottom:48px;}/*!sc*/
.cmc-bottom-margin-3x{margin-bottom:72px;}/*!sc*/
.cmc-clear:before,.cmc-clear:after{content:' ';display:table;}/*!sc*/
.cmc-clear:after{clear:both;}/*!sc*/
@media (max-width:767.98px){.cmc-input,.cmc-select__input input{font-size:16px !important;}}/*!sc*/
.cmc-table-row:hover td{background-color:#F8FAFD !important;}/*!sc*/
a:hover,a:not([href]):not([tabindex]):hover,a:focus,a:not([href]):not([tabindex]):focus{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.search-popover .tippy-content{padding:0 !important;}/*!sc*/
.search-popover{background-color:transparent !important;}/*!sc*/
.fiat-supported-popover{background-color:var(--dark-bg) !important;border-radius:8px;}/*!sc*/
.fiat-supported-popover .tippy-arrow{color:var(--dark-bg);}/*!sc*/
.highcharts-root text{font-size:12px;}/*!sc*/
data-styled.g342[id="sc-global-bYnpdr1"]{content:"sc-global-bYnpdr1,"}/*!sc*/
.gwBIGi{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;}/*!sc*/
.inEvJB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}/*!sc*/
data-styled.g343[id="sc-9dqrx-0"]{content:"gwBIGi,inEvJB,"}/*!sc*/
.gYhBqs{cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.gYhBqs span[class^='icon']{margin-left:1px;}/*!sc*/
data-styled.g344[id="sc-9dqrx-1"]{content:"gYhBqs,"}/*!sc*/
.gxonsA{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}/*!sc*/
.gxonsA a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g346[id="sc-1anvaoh-0"]{content:"gxonsA,"}/*!sc*/
.gMPRcy .cmc-link{text-align:left;}/*!sc*/
.gMPRcy .cmc-link > button{text-align:left;}/*!sc*/
data-styled.g347[id="sc-1bjn64-0"]{content:"gMPRcy,"}/*!sc*/
.lfTRgy{box-sizing:border-box;margin:0;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow:visible;height:64px;position:relative;}/*!sc*/
.lfTRgy a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.lfTRgy > div.leftArrow,.lfTRgy > div.rightArrow{display:none;}/*!sc*/
.lfTRgy.hideArrow > div.leftArrow,.lfTRgy.hideArrow > div.rightArrow{display:none;}/*!sc*/
.lfTRgy.hideArrow > *:nth-child(2){margin-left:0;}/*!sc*/
.lfTRgy.hideArrow > *:nth-last-child(2){margin-right:0;}/*!sc*/
@media (max-width:768px){.lfTRgy > div.leftArrow,.lfTRgy > div.rightArrow{top:0%;width:40px;position:absolute;height:50%;text-align:center;color:#58667e;font-weight:500;line-height:38px;position:-webkit-sticky;position:sticky;display:inline-table;-webkit-transition:all 0.3s ease;transition:all 0.3s ease;visibility:visible;border-radius:8px;}.lfTRgy > div.leftArrow svg,.lfTRgy > div.rightArrow svg{vertical-align:sub;width:16px;height:16px;vertical-align:middle;}.lfTRgy > div.leftArrow{content:'<';background-image:linear-gradient( to right,var(--control-background-color) 0%,rgba(255,255,255,0) 100% );left:0;-webkit-transform-origin:left;-ms-transform-origin:left;transform-origin:left;text-align:left;}.lfTRgy > div.rightArrow{right:0;content:'>';background-image:linear-gradient( to left,var(--control-background-color) 0%,rgba(255,255,255,0) 100% );-webkit-transform-origin:right;-ms-transform-origin:right;transform-origin:right;text-align:right;}.lfTRgy > *:nth-child(2){margin-left:-40px;}.lfTRgy > *:nth-last-child(2){margin-right:-40px;}.lfTRgy.scroll-initial > div.leftArrow{opacity:0;visibility:hidden;}.lfTRgy.scroll-bottom > div.rightArrow{opacity:0;visibility:hidden;}}/*!sc*/
.lfTRgy > div{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media (max-width:768px){.lfTRgy{height:48px;overflow-x:scroll;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;-ms-overflow-style:none;}.lfTRgy .table-control-page-sizer{display:none;}.lfTRgy .table-link-area{-webkit-flex:1;-ms-flex:1;flex:1;}.lfTRgy::-webkit-scrollbar{display:none;}}/*!sc*/
data-styled.g367[id="quq9zv-1"]{content:"lfTRgy,"}/*!sc*/
.hMHGsN{white-space:nowrap !important;color:#58667E !important;margin-right:4px !important;background-color:#F0F6FF !important;color:#3861FB !important;}/*!sc*/
.hMHGsN a{color:#3861FB !important;}/*!sc*/
.hMHGsN:hover{background-color:#F0F6FF !important;color:#3861FB !important;}/*!sc*/
.dTfXAS{white-space:nowrap !important;color:#58667E !important;margin-right:4px !important;}/*!sc*/
data-styled.g368[id="quq9zv-2"]{content:"hMHGsN,dTfXAS,"}/*!sc*/
.dSenMZ{padding:0 8px;margin-left:8px;}/*!sc*/
data-styled.g369[id="quq9zv-3"]{content:"dSenMZ,"}/*!sc*/
.hFppC{white-space:nowrap !important;color:#58667E !important;margin-right:4px !important;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--text-color) !important;padding:5px 8px;}/*!sc*/
.hFppC span.icon-Star{font-size:1.3em;}/*!sc*/
.hFppC svg{width:1.3em;}/*!sc*/
.hFppC span.icon-Star::before{color:!important;}/*!sc*/
.hFppC:hover span.icon-Star::before,.hFppC:hover svg > path{color:var(--text-color);fill:var(--text-color);}/*!sc*/
.hFppC .watchlist-star-text{color:unset;}/*!sc*/
data-styled.g371[id="quq9zv-5"]{content:"hFppC,"}/*!sc*/
.hTjWKA{height:16px;width:1px;margin:0 16px;background:#CFD6E4;}/*!sc*/
data-styled.g372[id="quq9zv-6"]{content:"hTjWKA,"}/*!sc*/
.leKgbR{display:inline-block;position:relative;width:8px;height:100%;min-height:32px;}/*!sc*/
data-styled.g373[id="quq9zv-7"]{content:"leKgbR,"}/*!sc*/
.ehWQdu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media (max-width:992px){.ehWQdu{display:none;}}/*!sc*/
data-styled.g374[id="quq9zv-8"]{content:"ehWQdu,"}/*!sc*/
.bFptSr{display:none;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}/*!sc*/
@media (max-width:992px){.bFptSr{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
.bFptSr > span{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.bFptSr > span:last-child{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}/*!sc*/
data-styled.g375[id="quq9zv-9"]{content:"bFptSr,"}/*!sc*/
.snkfi{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}/*!sc*/
data-styled.g376[id="quq9zv-10"]{content:"snkfi,"}/*!sc*/
.mvtIA .previous,.mvtIA .next,.mvtIA .break{display:inline-block;min-width:28px;height:28px;color:#222531;line-height:28px;text-align:center;vertical-align:middle;list-style:none;border-radius:2px;cursor:pointer;-webkit-transition:all 0.3s;transition:all 0.3s;}/*!sc*/
.mvtIA .break{outline:0;margin-right:8px;}/*!sc*/
.mvtIA .break a{background:transparent;border:none;cursor:pointer;color:#666;display:none;}/*!sc*/
.mvtIA .break:after{display:block;content:'•••';color:#666;font-size:10px;margin:0 auto;}/*!sc*/
.mvtIA .page{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;min-width:32px;height:32px;margin-right:4px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:8px;outline:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:600;color:#222531;}/*!sc*/
.mvtIA .page:hover{background:#EFF2F5;}/*!sc*/
.mvtIA .page a{height:100%;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:0 6px;-webkit-transition:none;transition:none;color:#222531 !important;}/*!sc*/
.mvtIA .page a:hover{-webkit-text-decoration:none;text-decoration:none;color:#222531 !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/
.mvtIA .chevron{color:inherit;}/*!sc*/
.mvtIA .previous{margin-right:8px;}/*!sc*/
.mvtIA .active{background:#3861FB;}/*!sc*/
.mvtIA .active:focus,.mvtIA .active:hover{color:#FFFFFF;background:#3861FB;}/*!sc*/
.mvtIA .active:focus a,.mvtIA .active:hover a{color:#FFFFFF !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/
.mvtIA .active a{color:#FFFFFF !important;}/*!sc*/
data-styled.g377[id="sc-1pue38x-0"]{content:"mvtIA,"}/*!sc*/
.kqmqqA{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin:16px 0 40px 0;}/*!sc*/
.kqmqqA a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.kqmqqA .rc-pagination-item a{color:#222531 !important;}/*!sc*/
.kqmqqA .rc-pagination-item a:hover{color:#222531 !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/
.kqmqqA .rc-pagination-item-active a{color:#FFFFFF !important;}/*!sc*/
.kqmqqA .rc-pagination-item-active a:hover{color:#FFFFFF !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/
data-styled.g378[id="sc-8ccaqg-0"]{content:"kqmqqA,"}/*!sc*/
.kCmxUQ{box-sizing:border-box;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.kCmxUQ a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g379[id="sc-8ccaqg-1"]{content:"kCmxUQ,"}/*!sc*/
.jbqscO{display:none;}/*!sc*/
.jbqscO .rc-pagination-item a{color:#222531 !important;}/*!sc*/
.jbqscO .rc-pagination-item a:hover{color:#222531 !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/
.jbqscO .rc-pagination-item-active a{color:#FFFFFF !important;}/*!sc*/
.jbqscO .rc-pagination-item-active a:hover{color:#FFFFFF !important;-webkit-text-decoration:none !important;text-decoration:none !important;}/*!sc*/
@media (max-width:768px){.jbqscO{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:20px 0;background-color:#F8FAFD;width:100vw;left:-16px;position:relative;}}/*!sc*/
data-styled.g380[id="sc-8ccaqg-2"]{content:"jbqscO,"}/*!sc*/
.locCiP{display:block;}/*!sc*/
@media (max-width:768px){.locCiP{display:none;}}/*!sc*/
data-styled.g381[id="sc-8ccaqg-3"]{content:"locCiP,"}/*!sc*/
.xQvNt{width:100%;max-width:100%;-webkit-filter:drop-shadow(0px 4px 24px rgba(88,102,126,0.08));filter:drop-shadow(0px 4px 24px rgba(88,102,126,0.08));}/*!sc*/
.xQvNt .scroll-menu-arrow{z-index:1;-webkit-transition:0.3s ease;transition:0.3s ease;}/*!sc*/
.xQvNt .scroll-menu-arrow--disabled{opacity:0;}/*!sc*/
.xQvNt .menu-item-wrapper:focus{outline:none;!important;}/*!sc*/
data-styled.g382[id="sc-1lqrwy2-0"]{content:"xQvNt,"}/*!sc*/
.iFclex{width:24px;height:24px;border-radius:12px;background-color:#A6B0C3;color:#FFF;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;cursor:pointer;}/*!sc*/
data-styled.g383[id="sc-1lqrwy2-1"]{content:"iFclex,"}/*!sc*/
.kASdkM{height:100%;width:0;overflow:visible;-webkit-transform:none;-ms-transform:none;transform:none;}/*!sc*/
.bdcCDi{height:100%;width:0;overflow:visible;-webkit-transform:translate(-24px,0);-ms-transform:translate(-24px,0);transform:translate(-24px,0);}/*!sc*/
data-styled.g384[id="sc-1lqrwy2-2"]{content:"kASdkM,bdcCDi,"}/*!sc*/
.dnuGLb{width:24px;height:90px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-image:linear-gradient(to right,#FFF,rgba(255,255,255,0));}/*!sc*/
.mhtTk{width:24px;height:90px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-image:linear-gradient(to left,#FFF,rgba(255,255,255,0));}/*!sc*/
data-styled.g385[id="sc-1lqrwy2-3"]{content:"dnuGLb,mhtTk,"}/*!sc*/
.eAFxmG{box-sizing:border-box;margin:0;color:#808A9D;-webkit-text-decoration:underline;text-decoration:underline;cursor:pointer;display:inline-block;}/*!sc*/
.eAFxmG a:-webkit-any-link{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g386[id="sc-835z3x-0"]{content:"eAFxmG,"}/*!sc*/
.hFlcKs span[class^='icon']{margin-right:4px;}/*!sc*/
data-styled.g395[id="sc-1puytyg-0"]{content:"hFlcKs,"}/*!sc*/
@-webkit-keyframes diEKVC{0%,100%{-webkit-transform:scale(0.8);-ms-transform:scale(0.8);transform:scale(0.8);opacity:0.2;}50%{-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9);opacity:0.3;}}/*!sc*/
@keyframes diEKVC{0%,100%{-webkit-transform:scale(0.8);-ms-transform:scale(0.8);transform:scale(0.8);opacity:0.2;}50%{-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9);opacity:0.3;}}/*!sc*/
data-styled.g397[id="sc-keyframes-diEKVC"]{content:"diEKVC,"}/*!sc*/
.fletOv{height:80px;}/*!sc*/
@media (max-width:576px){.fletOv{height:61px;}}/*!sc*/
.fletOv span{display:inline-block;}/*!sc*/
.fletOv td:nth-child(1) span{width:16px;height:16px;border-radius:8px;background:#EFF2F5;left:4px;top:5px;position:relative;}/*!sc*/
.fletOv td:nth-child(2) span:nth-child(2){width:68px;}/*!sc*/
.fletOv td:nth-child(2) span{width:12px;height:14px;border-radius:4px;background:#EFF2F5;left:4px;top:5px;position:relative;}/*!sc*/
.fletOv td:nth-child(3) span:nth-child(2){margin-left:5px;width:68px;}/*!sc*/
.fletOv td:nth-child(3) span:nth-child(3){margin-left:5px;width:24px;}/*!sc*/
@media (max-width:768px){.fletOv td:nth-child(3) span:nth-child(3){display:none;}}/*!sc*/
.fletOv td:nth-child(4) .row-holder,.fletOv td:nth-child(5) .row-holder,.fletOv td:nth-child(6) .row-holder,.fletOv td:nth-child(7) .row-holder{width:100%;}/*!sc*/
.fletOv td:nth-child(8) .row-holder,.fletOv td:nth-child(9) .row-holder{display:block;width:100%;}/*!sc*/
.fletOv td:nth-child(8) span:nth-child(2),.fletOv td:nth-child(9) span:nth-child(2){width:calc(100% * 0.6);margin-top:5px;float:right;}/*!sc*/
.fletOv td:nth-child(10) span{width:100%;height:22px;background:#EFF2F5;border-radius:4px;background:linear-gradient( 180deg,rgba(207,214,228,0.3) 0%,rgba(207,214,228,0) 97.7% );position:relative;top:10px;}/*!sc*/
.fletOv td:nth-child(11) span{float:left;width:16px;height:16px;border-radius:4px;background:#EFF2F5;left:4px;top:5px;position:relative;}/*!sc*/
.fletOv .circle{width:24px;height:24px;background:#EFF2F5;border-radius:12px;position:relative;top:5px;}/*!sc*/
.fletOv .row-holder{height:14px;background:#EFF2F5;border-radius:4px;}/*!sc*/
.fletOv .crypto-symbol{color:#808a9d;}/*!sc*/
data-styled.g421[id="sc-14kwl6f-0"]{content:"fletOv,"}/*!sc*/
.bNiDlV .seo-text__title{padding:16px 0px;color:#58667E;font-size:12px;line-height:18px;border-bottom:1px solid #EFF2F5;margin-bottom:40px;}/*!sc*/
.bNiDlV .seo-text__title > div{display:inline-block;}/*!sc*/
.bNiDlV .seo-text__title span{padding-left:5px;font-weight:500;color:#58667E;-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.bNiDlV .seo-text__title span:hover{cursor:pointer;}/*!sc*/
.bNiDlV .seo-text__content{padding:28px 0px;}/*!sc*/
.bNiDlV .seo-text__content > div{padding-bottom:24px;}/*!sc*/
.bNiDlV .seo-text__content span{font-weight:600;font-size:16px;color:#3861FB;-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.bNiDlV .seo-text__content span:hover{cursor:pointer;}/*!sc*/
.bNiDlV .seo-text-translations h1,.bNiDlV .seo-text-translations h2,.bNiDlV .seo-text-translations h3{font-weight:600;font-size:14px;line-height:21px;margin-bottom:10px;}/*!sc*/
.bNiDlV .seo-text-translations p{font-size:12px;line-height:18px;color:#58667E;padding-bottom:15px;}/*!sc*/
data-styled.g423[id="sc-1u9taii-0"]{content:"bNiDlV,"}/*!sc*/
.fpuWWI .cmc-native-ad-row{text-align:left !important;}/*!sc*/
data-styled.g424[id="sc-15ks4ej-0"]{content:"fpuWWI,"}/*!sc*/
@media (max-width:991px){.fENxkl{display:none;}}/*!sc*/
data-styled.g425[id="sc-15ks4ej-1"]{content:"fENxkl,"}/*!sc*/
</style></head><body class="DAY" data-commit="29bbdee3"><div id="__next"><div class="sc-1ojz83d-1 cyTcBl"><div class="sc-1ojz83d-0 fLfsZi"><div class="xwtbyq-0 iGclcX cmc-header-desktop"><div class="sc-33i2yg-0 dOnegn"><div class="container"><div><span class="sc-12ja2s9-0 eALoKW">Cryptocurrencies<!-- -->:  <a class="cmc-link" href="/all/views/all/">8,697</a></span><span class="sc-12ja2s9-0 eALoKW">Markets<!-- -->:  <a class="cmc-link" href="/currencies/volume/24-hour/">35,174</a></span><span class="sc-12ja2s9-0 eALoKW">Market Cap<!-- -->:  <a class="cmc-link" href="/charts/">$1,475,809,405,042</a></span><span class="sc-12ja2s9-0 eALoKW">24h Vol<!-- -->:  <a class="cmc-link" href="/charts/">$135,046,987,299</a></span><span class="sc-12ja2s9-0 eALoKW">Dominance<!-- -->:  <a class="cmc-link" href="/charts/#dominance-percentage">BTC<!-- -->: <!-- -->60.6%<!-- --> <!-- -->ETH<!-- -->: <!-- -->11.9%</a></span><span class="sc-12ja2s9-0 eALoKW"><span class="icon-Gas-Filled" style="margin-right:4px;vertical-align:middle"></span>ETH Gas<!-- -->:  <a>90<!-- --> <!-- -->Gwei<span class="icon-Chevron-down gasDownIcon___T2cjc"></span></a></span></div><div class="gqd5b8-0 nItQG"><div class="sc-AxhCb gAIOEV nav-item"></div><div class="gqd5b8-1 gqd5b8-2 fEixBa"><div class="cmc-popover"><div class="cmc-popover__trigger"><button class="sc-10o4ja6-0 iwazsF" title="Change your language"><span class="sc-1l1794m-1 jVkEMh">English</span><span class="sc-1l1794m-0 ejAOOE"><span class="icon-Caret-down"></span></span></button></div></div></div><div class="gqd5b8-1 kznmCF"><div class="cmc-popover"><div class="cmc-popover__trigger"><button class="sc-10o4ja6-0 iwazsF" data-qa-id="button-global-currency-picker"><span class="sc-1ta5cl2-0 ihKvrC"></span><span class="sc-1wnc593-1 bBcNle">USD</span><span class="sc-1wnc593-0 bMHyH"><span class="icon-Caret-down"></span></span></button></div></div></div><button class="sc-10o4ja6-0 gqd5b8-6 ljymAU cmc-theme-picker cmc-theme-picker--day" type="button"><span class="icon-Moon"></span></button></div></div></div><div class="sc-1q2q8hd-0 kqdKYQ"><a class="cmc-logo-link cmc-link" href="/" title="Go to homepage"><div class="sc-7i7lua-0 lohPt cmc-logo cmc-logo--size-large"></div></a><div class="sc-26sca8-0 fMhTiy"><nav class="sc-pZaHX hCKhjF"><ul class="sc-oTBUA hXGkGv"><li class="sc-pjstK dmrpMS"><a class="cmc-link" href="/" target="_self"><div class="sc-prorn fpBoEr"><span class="sc-AxhUy fqrLrs" color="text" font-size="14px" font-weight="600">Cryptocurrencies</span></div></a></li><li class="sc-pjstK dmrpMS"><a class="cmc-link" href="/rankings/exchanges/" target="_self"><div class="sc-prorn fpBoEr"><span class="sc-AxhUy fqrLrs" color="text" font-size="14px" font-weight="600">Exchanges</span></div></a></li><li class="sc-pjstK dmrpMS"><a class="cmc-link" href="/portfolio-tracker" target="_self"><div class="sc-prorn fpBoEr"><span class="sc-AxhUy fqrLrs" color="text" font-size="14px" font-weight="600">Portfolio</span></div></a></li><li class="sc-pjstK dmrpMS"><a class="cmc-link" href="/watchlist/" target="_self"><div class="sc-prorn fpBoEr"><span class="sc-AxhUy fqrLrs" color="text" font-size="14px" font-weight="600">Watchlist</span></div></a></li><li class="sc-pjstK dmrpMS"><div class="sc-pbxSd bSZjap"><div class="sc-prorn fpBoEr"><span class="sc-AxhUy fqrLrs" color="text" font-size="14px" font-weight="600">Products</span></div></div></li><li class="sc-pjstK dmrpMS"><a class="cmc-link" href="https://coinmarketcap.com/alexandria/" target="_blank"><div class="sc-prorn fpBoEr"><span class="sc-AxhUy fqrLrs" color="text" font-size="14px" font-weight="600"><div style="position:relative">Learn</div></span></div></a></li><li class="sc-pjstK dmrpMS"><a class="cmc-link" href="/bitcoin-analytics" target="_self"><div class="sc-prorn fpBoEr"><span class="sc-AxhUy fqrLrs" color="text" font-size="14px" font-weight="600">Buy Bitcoin</span></div></a></li></ul></nav></div><div class="sc-1q2q8hd-1 jOGBiJ"><nav class="sc-fzolEj jJAzoG"><ul class="sc-fzqBkg fCkJVF"><li class="sc-fzoKki kNKLJw"><button class="sc-fzoxKX gQAZOF"><div class="sc-1q2q8hd-2 kMOeoA"><div class="h9xs45-0 dZMOCN"><span class="icon-Bell"></span></div></div></button><div class="sc-fzoYkl hfPoTr"></div></li></ul></nav></div><div><div class="q0coyt-0 fQPFVV"><svg class="sc-AxhCb CnJdC" fill="none" height="16px" viewbox="0 0 24 24" width="16px" xmlns="http://www.w3.org/2000/svg"><path d="M16.4153 16.4153L20 20M18.5455 11.2727C18.5455 15.2893 15.2894 18.5454 11.2728 18.5454C7.25612 18.5454 4 15.2893 4 11.2727C4 7.2561 7.25612 4 11.2728 4C15.2894 4 18.5455 7.2561 18.5455 11.2727Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg><div class="q0coyt-1 fOZYHf">Search</div><span></span></div></div></div><div class="xwtbyq-1 eiYhYM"></div></div><div class="sc-1l9306o-0 gjGEuR cmc-header-mobile"><nav class="sc-10dhc7s-1 dPLAIJ"><div class="container"><div class="sc-10dhc7s-2 hTZeZX"><a class="cmc-link" href="/" title="Go to homepage"><div class="sc-7i7lua-0 lohPt cmc-logo"></div></a></div><div class="sc-10dhc7s-0 iFlDJJ"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M16.4153 16.4153L20 20M18.5455 11.2727C18.5455 15.2893 15.2894 18.5454 11.2728 18.5454C7.25612 18.5454 4 15.2893 4 11.2727C4 7.2561 7.25612 4 11.2728 4C15.2894 4 18.5455 7.2561 18.5455 11.2727Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div><div class="sc-10dhc7s-0 iFlDJJ"><svg class="sc-AxhCb loZKFC" fill="currentColor" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M1.99805 6.00342C1.99805 5.45113 2.44576 5.00342 2.99805 5.00342H21.0013C21.5536 5.00342 22.0013 5.45113 22.0013 6.00342C22.0013 6.5557 21.5536 7.00342 21.0013 7.00342H2.99805C2.44576 7.00342 1.99805 6.5557 1.99805 6.00342ZM1.99805 11.9999C1.99805 11.4476 2.44576 10.9999 2.99805 10.9999H21.0013C21.5536 10.9999 22.0013 11.4476 22.0013 11.9999C22.0013 12.5522 21.5536 12.9999 21.0013 12.9999H2.99805C2.44576 12.9999 1.99805 12.5522 1.99805 11.9999ZM2.99805 16.9964C2.44576 16.9964 1.99805 17.4441 1.99805 17.9964C1.99805 18.5487 2.44576 18.9964 2.99805 18.9964H21.0013C21.5536 18.9964 22.0013 18.5487 22.0013 17.9964C22.0013 17.4441 21.5536 16.9964 21.0013 16.9964H2.99805Z" fill-rule="evenodd"></path></svg></div></div></nav><div class="jz3180-1 cOzvm"><div class="of8kjr-8 biWqMi"><div class="sc-1srp8s9-0 leTUev"><div class="sc-1srp8s9-1 OfwFQ"><a class="cmc-link" href="/" title="Go to homepage"><div class="sc-7i7lua-0 lohPt cmc-logo"></div></a></div><button class="sc-Axmtr ivcmHV sc-fzqNJr edTNjJ" style="margin-right:-5px"><svg class="sc-AxhCb loZKFC" fill="currentColor" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18M18 18L6 6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></button></div><div class="of8kjr-0 iyGLzw"><ul class="of8kjr-1 fWFYct" role="menu"><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><p class="sc-AxhUy fEdfVy" color="text" font-size="16" font-weight="600">Cryptocurrencies</p><svg class="sc-AxhCb jDlxxm" fill="none" height="22" viewbox="0 0 24 24" width="22" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div><div class="swwyas-3 dzLjvV" style="height:0px"><div class="swwyas-4 fiLTGu"><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" fill="#3861FB" r="20"></circle><path d="M27.3907 21.9512C27.0367 22.1717 26.6198 22.199 26.3029 22.0229C25.9004 21.799 25.6791 21.2746 25.6791 20.5454V18.3634C25.6791 17.3098 25.2562 16.56 24.5492 16.3576C23.351 16.0137 22.4499 17.458 22.1112 18.0005L19.998 21.3761V17.2502C19.9743 16.301 19.6613 15.7332 19.0672 15.562C18.6741 15.4488 18.0859 15.4941 17.5145 16.3556L12.7801 23.8454C12.1463 22.6599 11.8159 21.3399 11.8176 20C11.8176 15.4883 15.4875 11.818 19.998 11.818C24.5086 11.818 28.178 15.4883 28.178 20C28.178 20.0078 28.1799 20.0146 28.1804 20.022C28.1804 20.0298 28.179 20.0366 28.1794 20.0444C28.222 20.918 27.9349 21.6132 27.3907 21.9517V21.9512ZM29.9956 20.0005V20V19.9776L29.9951 19.9551C29.9698 14.4605 25.4954 10 19.9975 10C14.4853 10 10 14.4859 10 20C10 25.5137 14.4853 30 19.998 30C22.5276 30 24.9418 29.0527 26.7951 27.3332C27.1635 26.9917 27.1852 26.4166 26.8436 26.0488C26.6812 25.8723 26.4535 25.7677 26.2118 25.7585C25.9702 25.7493 25.735 25.8364 25.5593 26C24.0571 27.4015 22.0668 28.1823 19.998 28.182C17.5828 28.182 15.4097 27.1288 13.911 25.4585L18.1804 18.7044V21.818C18.1804 23.3137 18.7691 23.7971 19.2628 23.9385C19.7569 24.08 20.512 23.9834 21.3047 22.7151L23.653 18.9644C23.7283 18.8434 23.7976 18.739 23.861 18.6488V20.5454C23.861 21.9434 24.4294 23.0615 25.4201 23.6122C26.3133 24.1088 27.4363 24.0639 28.3513 23.4951C29.4603 22.8049 30.0579 21.5332 29.9956 20.0005Z" fill="white"></path></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Ranking</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/charts/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#23DCF5" r="16"></circle><path d="M17.2121 9.33337H16.6667V15.3334H22.6667V14.7879C22.6667 11.7879 20.2121 9.33337 17.2121 9.33337Z" fill="white"></path><path d="M15.5667 11.3334H15C11.8833 11.3334 9.33333 13.8834 9.33333 17C9.33333 20.1167 11.8833 22.6667 15 22.6667C18.1167 22.6667 20.6667 20.1167 20.6667 17V16.4334H15.5667V11.3334Z" fill="white"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Global Charts</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/best-cryptos/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#8A3FFC" r="16"></circle><circle cx="11.3333" cy="11.3333" fill="white" r="1.33333"></circle><circle cx="11.3333" cy="16" fill="white" r="1.33333"></circle><ellipse cx="11.3333" cy="20.6667" fill="white" rx="1.33333" ry="1.33333"></ellipse><circle cx="16" cy="11.3333" fill="white" r="1.33333"></circle><circle cx="16" cy="16" fill="white" r="1.33333"></circle><ellipse cx="16" cy="20.6667" fill="white" rx="1.33333" ry="1.33333"></ellipse><ellipse cx="20.6667" cy="11.3333" fill="white" rx="1.33333" ry="1.33333"></ellipse><ellipse cx="20.6667" cy="16" fill="white" rx="1.33333" ry="1.33333"></ellipse><circle cx="20.6667" cy="20.6667" fill="white" r="1.33333"></circle></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Spotlight</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/gainers-losers/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#16C784" r="16"></circle><path d="M22 12.6666L16.6 18.6666L13 15.0666L10 18.0666" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path><path d="M17.7995 12.6666H21.9995V16.8666" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Gainers &amp; Losers</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/new/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#2444D4" r="16"></circle><path d="M10 12.6666H22M10 16H15.4545M10 19.3333H15.4545" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path><path d="M20 15.3334V19.3334M22 17.3334H18" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Recently Added</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/historical/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#EFF2F5" r="16"></circle><path d="M16.3333 13.3334V16.3334L18.3333 18" stroke="#808A9D" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path><path d="M12.6576 15.9828L11.333 17.3247L9.99103 16.0001" stroke="#808A9D" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path><path d="M11.3332 16C11.3332 13.0544 13.7211 10.6666 16.6666 10.6666C19.6121 10.6666 21.9999 13.0544 21.9999 16C21.9999 18.9455 19.6121 21.3333 16.6666 21.3333C15.9309 21.3333 15.2301 21.1843 14.5925 20.915C14.2361 20.7644 13.8994 20.5761 13.5875 20.3552" stroke="#808A9D" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Historical Snapshots</p></div></a></div></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><p class="sc-AxhUy fEdfVy" color="text" font-size="16" font-weight="600">Exchanges</p><svg class="sc-AxhCb jDlxxm" fill="none" height="22" viewbox="0 0 24 24" width="22" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div><div class="swwyas-3 dzLjvV" style="height:0px"><div class="swwyas-4 fiLTGu"><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/rankings/exchanges/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" fill="#3861FB" r="20"></circle><path d="M13 20L20 13L27 20L20 27L13 20Z" fill="white"></path></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Spot</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/rankings/exchanges/derivatives/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" fill="#2444D4" r="20"></circle><path d="M13 24L20 14L27 24H13Z" fill="white"></path></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Derivatives</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/rankings/exchanges/dex/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" fill="#152CAD" r="20"></circle><path d="M13 16L16 13L19 16L16 19L13 16Z" fill="white"></path><path d="M21 16L24 13L27 16L24 19L21 16Z" fill="white"></path><path d="M21 24L24 21L27 24L24 27L21 24Z" fill="white"></path><path d="M13 24L16 21L19 24L16 27L13 24Z" fill="white"></path></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">DEX</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/how-to-buy-bitcoin/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#16C784" r="16"></circle><path d="M22.2742 11.8013C21.4661 11.4623 20.6573 11.3334 19.849 11.3334C17.283 11.3332 14.7171 12.6321 12.1511 12.6321C11.5075 12.6321 10.8644 12.5505 10.2209 12.3463C10.1486 12.3234 10.0761 12.3125 10.0052 12.3125C9.64671 12.3125 9.33337 12.59 9.33337 12.9752V19.5848C9.33337 19.848 9.484 20.0973 9.72587 20.1986C10.534 20.5377 11.3427 20.6667 12.1511 20.6667C14.7171 20.6667 17.2832 19.3677 19.8492 19.3677C20.4927 19.3677 21.1359 19.4494 21.7794 19.6536C21.8517 19.6765 21.9242 19.6873 21.995 19.6873C22.3536 19.6873 22.6669 19.4098 22.6669 19.0246V12.4152C22.6667 12.1519 22.5161 11.9027 22.2742 11.8013ZM16 18C15.0794 18 14.3334 17.1044 14.3334 16C14.3334 14.8955 15.0796 14 16 14C16.9205 14 17.6667 14.8955 17.6667 16C17.6667 17.1048 16.9202 18 16 18Z" fill="white"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Where to Buy</p></div></a></div></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><a class="cmc-link" href="/portfolio-tracker" style="display:block;width:100%;line-height:48px">Portfolio</a></div><div class="swwyas-3 dzLjvV" style="height:0px"><div class="swwyas-4 fiLTGu"></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><a class="cmc-link" href="/watchlist/" style="display:block;width:100%;line-height:48px">Watchlist</a></div><div class="swwyas-3 dzLjvV" style="height:0px"><div class="swwyas-4 fiLTGu"></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><p class="sc-AxhUy fEdfVy" color="text" font-size="16" font-weight="600">Products</p><svg class="sc-AxhCb jDlxxm" fill="none" height="22" viewbox="0 0 24 24" width="22" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div><div class="swwyas-3 dzLjvV" style="height:0px"><div class="swwyas-4 fiLTGu"><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/converter/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#8A3FFC" r="16"></circle><path d="M19.0001 11L21.3334 13.3333M21.3334 13.3333L19.0001 15.6667M21.3334 13.3333H11.3334M13.0001 16.3333L10.6667 18.6667M10.6667 18.6667L13.0001 21M10.6667 18.6667H20.6667" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Converter</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="https://coinmarketcap.com/mobile/" target="_blank"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#3861FB" r="16"></circle><path d="M11.3333 11.3334C11.3333 10.2288 12.2287 9.33337 13.3333 9.33337H18.6666C19.7712 9.33337 20.6666 10.2288 20.6666 11.3334V19.3334H11.3333V11.3334Z" fill="white"></path><path clip-rule="evenodd" d="M20.6666 19.3334H11.3333V20.6667C11.3333 21.7713 12.2287 22.6667 13.3333 22.6667H18.6666C19.7712 22.6667 20.6666 21.7713 20.6666 20.6667V19.3334ZM15.9999 22C15.4466 22 14.9999 21.5534 14.9999 21C14.9999 20.4467 15.4466 20 15.9999 20C16.5533 20 16.9999 20.4467 16.9999 21C16.9999 21.5534 16.5533 22 15.9999 22Z" fill="white" fill-rule="evenodd"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Mobile Apps</p><div class="swwyas-9 vEeCz"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="https://blockchain.coinmarketcap.com" target="_blank"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" fill="#17DF94" r="20"></circle><path d="M23.6794 23.6794L26.6667 26.6667M25.4546 19.3939C25.4546 22.7411 22.7412 25.4545 19.394 25.4545C16.0468 25.4545 13.3334 22.7411 13.3334 19.3939C13.3334 16.0468 16.0468 13.3333 19.394 13.3333C22.7412 13.3333 25.4546 16.0468 25.4546 19.3939Z" fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Blockchain Explorer</p><div class="swwyas-9 vEeCz"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="https://interest.coinmarketcap.com" target="_blank"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#23DCF5" r="16"></circle><path d="M13.3749 14.2C14.5025 14.2 15.4166 13.2598 15.4166 12.1C15.4166 10.9402 14.5025 10 13.3749 10C12.2473 10 11.3333 10.9402 11.3333 12.1C11.3333 13.2598 12.2473 14.2 13.3749 14.2Z" fill="white"></path><path d="M18.6249 22C19.7525 22 20.6666 21.0598 20.6666 19.9C20.6666 18.7402 19.7525 17.8 18.6249 17.8C17.4973 17.8 16.5833 18.7402 16.5833 19.9C16.5833 21.0598 17.4973 22 18.6249 22Z" fill="white"></path><path clip-rule="evenodd" d="M20.5481 11.3221C20.812 11.5788 20.818 12.0008 20.5613 12.2648L12.3947 20.6648C12.138 20.9288 11.7159 20.9347 11.4519 20.6781C11.188 20.4214 11.182 19.9994 11.4387 19.7354L19.6053 11.3354C19.862 11.0714 20.2841 11.0654 20.5481 11.3221Z" fill="white" fill-rule="evenodd"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Interest</p><div class="swwyas-9 vEeCz"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="https://jobs.coinmarketcap.com" target="_blank"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#F5B97F" r="16"></circle><path clip-rule="evenodd" d="M14 16H10V19.3333C10 20.4379 10.8954 21.3333 12 21.3333H20C21.1046 21.3333 22 20.4379 22 19.3333V16H18V16.5238C18 17.0761 17.5523 17.5238 17 17.5238H15C14.4477 17.5238 14 17.0761 14 16.5238V16Z" fill="white" fill-rule="evenodd"></path><path clip-rule="evenodd" d="M17.875 12H17.8333H16.375H15.625H14.1667H14.125V12.1666V13.3333H17.875V12.1666V12ZM19.3333 13.3333V12V11.8334V11.6666C19.3333 11.1143 18.8856 10.6666 18.3333 10.6666H17.875H14.125H13.6667C13.1144 10.6666 12.6667 11.1143 12.6667 11.6666V11.8334V12V13.3333H12C10.8954 13.3333 10 14.2287 10 15.3333V16H22V15.3333C22 14.2287 21.1046 13.3333 20 13.3333H19.3333Z" fill="white" fill-rule="evenodd"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Jobs Board</p><div class="swwyas-9 vEeCz"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div></div></a></div><div class="swwyas-8 lhmcUg"></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="https://pro.coinmarketcap.com/" target="_blank"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#EFF2F5" r="16"></circle><path d="M12.6667 13.3334L10 16L12.6667 18.6667M19.3333 13.3334L22 16L19.3333 18.6667" stroke="#808A9D" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path><path d="M14.6667 20.6667L17.3334 11.3334" stroke="#808A9D" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Crypto API</p><div class="swwyas-9 vEeCz"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/widget/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#EFF2F5" r="16"></circle><path clip-rule="evenodd" d="M11.6667 10.6666C11.1145 10.6666 10.6667 11.1143 10.6667 11.6666V14.3333C10.6667 14.8856 11.1145 15.3333 11.6667 15.3333H14.3334C14.8857 15.3333 15.3334 14.8856 15.3334 14.3333V11.6666C15.3334 11.1143 14.8857 10.6666 14.3334 10.6666H11.6667ZM17.6667 10.6666C17.1145 10.6666 16.6667 11.1143 16.6667 11.6666V14.3333C16.6667 14.8856 17.1145 15.3333 17.6667 15.3333H20.3334C20.8857 15.3333 21.3334 14.8856 21.3334 14.3333V11.6666C21.3334 11.1143 20.8857 10.6666 20.3334 10.6666H17.6667ZM16.6667 17.6666C16.6667 17.1143 17.1145 16.6666 17.6667 16.6666H20.3334C20.8857 16.6666 21.3334 17.1143 21.3334 17.6666V20.3333C21.3334 20.8856 20.8857 21.3333 20.3334 21.3333H17.6667C17.1145 21.3333 16.6667 20.8856 16.6667 20.3333V17.6666ZM11.6667 16.6666C11.1145 16.6666 10.6667 17.1143 10.6667 17.6666V20.3333C10.6667 20.8856 11.1145 21.3333 11.6667 21.3333H14.3334C14.8857 21.3333 15.3334 20.8856 15.3334 20.3333V17.6666C15.3334 17.1143 14.8857 16.6666 14.3334 16.6666H11.6667Z" fill="#808A9D" fill-rule="evenodd"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Site Widgets</p></div></a></div></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><p class="sc-AxhUy fEdfVy" color="text" font-size="16" font-weight="600"><div style="position:relative">Learn</div></p><svg class="sc-AxhCb jDlxxm" fill="none" height="22" viewbox="0 0 24 24" width="22" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div><div class="swwyas-3 dzLjvV" style="height:0px"><div class="swwyas-4 fiLTGu"><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="https://coinmarketcap.com/alexandria/" target="_blank"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" fill="#3861FB" r="20"></circle><rect fill="url(#paint0_linear)" height="14" rx="2" width="14" x="13" y="13"></rect><defs><lineargradient gradientunits="userSpaceOnUse" id="paint0_linear" x1="20" x2="20" y1="13" y2="27"><stop stop-color="white" stop-opacity="0.3"></stop><stop offset="1" stop-color="white" stop-opacity="0.84"></stop></lineargradient></defs></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Alexandria</p><div class="swwyas-9 vEeCz"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="https://coinmarketcap.com/earn/" target="_blank"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#23DCF5" r="16"></circle><circle cx="16" cy="16" fill="url(#paint0_linear)" r="6"></circle><defs><lineargradient gradientunits="userSpaceOnUse" id="paint0_linear" x1="16" x2="16" y1="10" y2="22"><stop stop-color="white" stop-opacity="0.3"></stop><stop offset="1" stop-color="white" stop-opacity="0.84"></stop></lineargradient></defs></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Earn</p><div class="swwyas-9 vEeCz"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div><span class="sc-AxiKw eTRJtf">New</span></div></a></div><div class="swwyas-8 lhmcUg"></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="https://coinmarketcap.com/alexandria/glossary" target="_blank"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#EFF2F5" r="16"></circle><path d="M21.8846 10.668C20.6161 10.7421 18.0948 11.0116 16.5383 11.9916C16.4309 12.0592 16.3701 12.1795 16.3701 12.3052V20.9687C16.3701 21.2437 16.6624 21.4175 16.9089 21.2899C18.5103 20.4608 20.8263 20.2347 21.9714 20.1728C22.3624 20.1516 22.6664 19.8292 22.6664 19.4428V11.399C22.6666 10.9773 22.311 10.6433 21.8846 10.668ZM15.4613 11.9916C13.905 11.0116 11.3837 10.7423 10.1152 10.668C9.68881 10.6433 9.33325 10.9773 9.33325 11.399V19.443C9.33325 19.8297 9.63719 20.152 10.0282 20.173C11.1738 20.2349 13.4909 20.4613 15.0923 21.2908C15.3381 21.4182 15.6295 21.2447 15.6295 20.9704V12.3009C15.6295 12.1749 15.5689 12.0595 15.4613 11.9916Z" fill="#808A9D"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Glossary</p><div class="swwyas-9 vEeCz"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.0002 7.99969L13.3335 2.6665M13.3335 2.6665H9.4547M13.3335 2.6665L13.3335 6.54518M6.54566 4.60614H3.85205C3.19749 4.60614 2.66687 5.13675 2.66687 5.79129V12.148C2.66687 12.8026 3.19749 13.3332 3.85205 13.3332H10.209C10.8635 13.3332 11.3941 12.8026 11.3941 12.148V9.45449" stroke="#A6B0C3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.5"></path></svg></svg></div></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/newsletter/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#EFF2F5" r="16"></circle><path d="M22.414 14.4152C22.5155 14.3398 22.6666 14.4103 22.6666 14.5294V19.4999C22.6666 20.144 22.1067 20.6666 21.4166 20.6666H10.5833C9.89315 20.6666 9.33325 20.144 9.33325 19.4999V14.5319C9.33325 14.4103 9.48169 14.3423 9.58586 14.4176C10.1692 14.8405 10.9426 15.3777 13.5989 17.1787C14.1484 17.553 15.0754 18.3405 15.9999 18.3357C16.9296 18.343 17.8749 17.5385 18.4036 17.1787C21.0598 15.3777 21.8306 14.8381 22.414 14.4152ZM15.9999 17.5555C16.6041 17.5652 17.4739 16.8458 17.9114 16.5492C21.3671 14.2086 21.6301 14.0044 22.427 13.4211C22.578 13.3117 22.6666 13.1416 22.6666 12.9617V12.4999C22.6666 11.8558 22.1067 11.3333 21.4166 11.3333H10.5833C9.89315 11.3333 9.33325 11.8558 9.33325 12.4999V12.9617C9.33325 13.1416 9.42179 13.3093 9.57284 13.4211C10.3697 14.002 10.6327 14.2086 14.0885 16.5492C14.526 16.8458 15.3958 17.5652 15.9999 17.5555Z" fill="#808A9D"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Newsletter</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/events/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#EFF2F5" r="16"></circle><path d="M10.9525 14.5H21.0477C21.2048 14.5 21.3334 14.6266 21.3334 14.7812V20.875C21.3334 21.4961 20.8215 22 20.1906 22H11.8096C11.1787 22 10.6667 21.4961 10.6667 20.875V14.7812C10.6667 14.6266 10.7953 14.5 10.9525 14.5ZM21.3334 13.4688V12.625C21.3334 12.0039 20.8215 11.5 20.1906 11.5H19.0477V10.2812C19.0477 10.1266 18.9191 10 18.762 10H17.8096C17.6525 10 17.5239 10.1266 17.5239 10.2812V11.5H14.4763V10.2812C14.4763 10.1266 14.3477 10 14.1906 10H13.2382C13.081 10 12.9525 10.1266 12.9525 10.2812V11.5H11.8096C11.1787 11.5 10.6667 12.0039 10.6667 12.625V13.4688C10.6667 13.6234 10.7953 13.75 10.9525 13.75H21.0477C21.2048 13.75 21.3334 13.6234 21.3334 13.4688Z" fill="#808A9D"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Events Calendar</p></div></a></div><div class="swwyas-5 caYbXb"><a class="swwyas-6 dvzNTs cmc-link" href="/methodology/" target="_self"><div class="swwyas-7 nLWjZ"><svg class="sc-AxhCb bKwmGO" fill="currentColor" height="40" viewbox="0 0 40 40" width="40" xmlns="http://www.w3.org/2000/svg"><svg fill="none" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#EFF2F5" r="16"></circle><path d="M13.8803 21.1651C13.8806 21.3289 13.9299 21.4893 14.0224 21.6257L14.4756 22.2947C14.553 22.4091 14.658 22.5029 14.7812 22.5678C14.9044 22.6326 15.0421 22.6666 15.1819 22.6666H16.8182C16.958 22.6666 17.0957 22.6326 17.2189 22.5678C17.3421 22.5029 17.4471 22.4091 17.5245 22.2947L17.9777 21.6257C18.0702 21.4892 18.1196 21.329 18.1198 21.1651L18.1209 20.1664H13.879L13.8803 21.1651ZM11.3333 13.9165C11.3333 15.072 11.7694 16.1261 12.4883 16.9316C12.9263 17.4224 13.6114 18.4479 13.8726 19.313C13.8737 19.3198 13.8745 19.3266 13.8755 19.3333H18.1243C18.1254 19.3266 18.1262 19.32 18.1272 19.313C18.3884 18.4479 19.0736 17.4224 19.5116 16.9316C20.2304 16.1261 20.6666 15.072 20.6666 13.9165C20.6666 11.3804 18.5695 9.32546 15.9853 9.33327C13.2805 9.34135 11.3333 11.4939 11.3333 13.9165ZM15.9999 11.8332C14.8303 11.8332 13.8787 12.7678 13.8787 13.9165C13.8787 14.1467 13.6889 14.3332 13.4545 14.3332C13.2201 14.3332 13.0302 14.1467 13.0302 13.9165C13.0302 12.3082 14.3623 10.9999 15.9999 10.9999C16.2343 10.9999 16.4242 11.1864 16.4242 11.4166C16.4242 11.6468 16.2343 11.8332 15.9999 11.8332Z" fill="#808A9D"></path></svg></svg></div><div style="display:flex;align-items:center;width:calc(100% - 26px)"><p class="sc-AxhUy juchaL" color="text" font-size="16" font-weight="500" style="white-space:nowrap">Methodology</p></div></a></div></div></div></li><li class="swwyas-0 iuLgSq"><div class="swwyas-1 brNCtW"><a class="cmc-link" href="/bitcoin-analytics" style="display:block;width:100%;line-height:48px">Buy Bitcoin</a></div><div class="swwyas-3 dzLjvV" style="height:0px"><div class="swwyas-4 fiLTGu"></div></div></li><li class="of8kjr-2 cCfPRT" role="menuitem"><div class="uikit-icon-adjust"><span class="sc-AxhCb fwIcUB"><svg class="sc-AxhCb iQwsru" fill="currentColor" height="18px" viewbox="0 0 24 24" width="18px" xmlns="http://www.w3.org/2000/svg"><path d="M12 22C13.4191 22 14.5702 20.8809 14.5702 19.5H9.42978C9.42978 20.8809 10.5809 22 12 22ZM20.654 16.152C19.8778 15.341 18.4253 14.1211 18.4253 10.125C18.4253 7.08984 16.2364 4.66016 13.2849 4.06406V3.25C13.2849 2.55977 12.7096 2 12 2C11.2904 2 10.7151 2.55977 10.7151 3.25V4.06406C7.76358 4.66016 5.57466 7.08984 5.57466 10.125C5.57466 14.1211 4.12221 15.341 3.34596 16.152C3.10489 16.4039 2.99802 16.7051 3.00003 17C3.00445 17.6406 3.52154 18.25 4.28976 18.25H19.7102C20.4785 18.25 20.996 17.6406 21 17C21.002 16.7051 20.8951 16.4035 20.654 16.152Z"></path></svg></span>Announcements</div></li></ul><div class="lbfhry-1 eJUUCc"><div class="lbfhry-2 cqYXSa"><div class="cmc-popover"><div class="cmc-popover__trigger"><button class="lbfhry-0 kgfbam" title="Change your language"><span class="sc-1l1794m-1 jVkEMh">English</span><span class="sc-1l1794m-0 ejAOOE"><span class="icon-Caret-down"></span></span></button></div></div></div><div class="lbfhry-2 lbfhry-3 ffesPn"><div class="cmc-popover"><div class="cmc-popover__trigger"><button class="lbfhry-0 kgfbam" data-qa-id="button-global-currency-picker" title="Change your display currency"><span class="sc-1ta5cl2-0 ihKvrC"></span><span class="sc-1wnc593-1 bBcNle">USD</span><span class="sc-1wnc593-0 bMHyH"><span class="icon-Caret-down"></span></span></button></div></div></div><div class="lbfhry-7 kFpHDG"><button class="lbfhry-0 lbfhry-8 gWEyHG cmc-theme-picker cmc-theme-picker--day" title="Day/Night Mode" type="button"><span class="icon-Moon"></span></button></div></div><div class="of8kjr-3 gZSKzh"><div><span class="of8kjr-4 fmHBpc"><a class="of8kjr-5 dqwTJv cmc-link" href="/disclaimer/">Disclaimer</a></span><span class="of8kjr-4 fmHBpc"><a class="of8kjr-5 dqwTJv cmc-link" href="/request/">Request Form</a></span><span class="of8kjr-4 fmHBpc"><a class="of8kjr-5 dqwTJv cmc-link" href="/terms/">Terms of Use</a></span></div><div><span class="of8kjr-4 fmHBpc"><a class="of8kjr-5 dqwTJv cmc-link" href="/privacy/">Privacy Policy</a></span><span class="of8kjr-4 fmHBpc"><a class="of8kjr-5 dqwTJv cmc-link" href="/about/">About</a></span></div><hr/><div class="of8kjr-6 cKzWZG"><a class="of8kjr-7 lbjAWJ cmc-link" href="https://twitter.com/CoinMarketCap" rel="noopener nofollow noreferrer" target="_blank" title="Twitter"><svg class="sc-AxhCb loZKFC" fill="currentColor" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M22 5.89691C21.25 6.2268 20.5 6.47423 19.6667 6.5567C20.5 6.06186 21.1667 5.23711 21.5 4.3299C20.6667 4.82474 19.8333 5.15464 18.9167 5.31959C18.1667 4.49485 17.0833 4 15.9167 4C13.6667 4 11.8333 5.81443 11.8333 8.04124C11.8333 8.37113 11.8333 8.70103 11.9167 8.94845C8.41667 8.7835 5.41667 7.13402 3.41667 4.65979C3 5.31959 2.83333 5.97938 2.83333 6.72165C2.83333 8.12371 3.58333 9.36082 4.66667 10.1031C4 10.1031 3.33333 9.93814 2.83333 9.60825C2.83333 9.60825 2.83333 9.60825 2.83333 9.69072C2.83333 11.6701 4.25 13.3196 6.08333 13.6495C5.75 13.732 5.41667 13.8144 5 13.8144C4.75 13.8144 4.5 13.8144 4.25 13.732C4.75 15.3814 6.25 16.5361 8.08333 16.5361C6.66667 17.6082 4.91667 18.268 3 18.268C2.66667 18.268 2.33333 18.268 2 18.1856C3.83333 19.3402 6 20 8.25 20C15.8333 20 19.9167 13.8144 19.9167 8.45361C19.9167 8.28866 19.9167 8.12371 19.9167 7.95876C20.75 7.38144 21.4167 6.63917 22 5.89691Z" fill="currenColor"></path></svg></a></div><div class="of8kjr-6 cKzWZG"><a class="of8kjr-7 lbjAWJ cmc-link" href="https://www.facebook.com/CoinMarketCap" rel="noopener nofollow noreferrer" target="_blank" title="Facebook"><svg class="sc-AxhCb loZKFC" fill="currentColor" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M20.3333 2H3.66667C2.74583 2 2 2.74583 2 3.66667V20.3333C2 21.2542 2.74583 22 3.66667 22H12.8333V14.5H10.3333V11.1667H12.8333V9.01083C12.8333 6.4275 14.4108 5.02083 16.7158 5.02083C17.82 5.02083 18.7683 5.10333 19.045 5.14V7.84L17.4467 7.84083C16.1933 7.84083 15.9508 8.43667 15.9508 9.31V11.1667H19.6508L18.8175 14.5H15.9508V22H20.3333C21.2542 22 22 21.2542 22 20.3333V3.66667C22 2.74583 21.2542 2 20.3333 2Z" fill="currentColor"></path></svg></a></div><div class="of8kjr-6 cKzWZG"><a class="of8kjr-7 lbjAWJ cmc-link" href="https://t.me/CoinMarketCap" rel="noopener nofollow noreferrer" target="_blank" title="Telegram"><svg class="sc-AxhCb loZKFC" fill="currentColor" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M21.961 4.33581C21.9448 4.26415 21.9094 4.19792 21.8583 4.14382C21.8072 4.08972 21.7423 4.04967 21.6702 4.02773C21.4074 3.97723 21.1355 3.99594 20.8827 4.08191C20.8827 4.08191 3.35851 10.1941 2.35768 10.8709C2.14268 11.0165 2.07018 11.1014 2.03434 11.2008C1.86101 11.686 2.40018 11.8946 2.40018 11.8946L6.91684 13.3226C6.99321 13.3359 7.07174 13.3315 7.14601 13.3097C8.17268 12.6798 17.4793 6.97509 18.0202 6.78345C18.1035 6.75919 18.1677 6.78345 18.151 6.84409C17.936 7.57588 9.89351 14.508 9.84934 14.5501C9.82783 14.5672 9.81107 14.5892 9.80059 14.6142C9.79011 14.6392 9.78624 14.6664 9.78934 14.6932L9.36768 18.9723C9.36768 18.9723 9.19101 20.3041 10.5635 18.9723C11.5368 18.0271 12.471 17.2443 12.9377 16.8635C14.491 17.9042 16.1618 19.0548 16.8827 19.6572C17.0039 19.7711 17.1476 19.8601 17.3051 19.9189C17.4626 19.9776 17.6307 20.005 17.7993 19.9993C18.007 19.9747 18.2021 19.8894 18.3585 19.7546C18.515 19.6198 18.6254 19.442 18.6752 19.2448C18.6752 19.2448 21.8668 6.77375 21.9735 5.10317C21.9843 4.94145 21.9985 4.83472 22.0002 4.72232C22.0054 4.59235 21.9922 4.46231 21.961 4.33581Z" fill="currenColor"></path></svg></a></div><div class="of8kjr-6 cKzWZG"><a class="of8kjr-7 lbjAWJ cmc-link" href="https://www.linkedin.com/company/coinmarketcap/" rel="noopener nofollow noreferrer" target="_blank" title="LinkedIn"><svg class="sc-AxhCb loZKFC" fill="currentColor" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M21.1667 2H2.83333C2.33333 2 2 2.33333 2 2.83333V21.1667C2 21.6667 2.33333 22 2.83333 22H21.1667C21.6667 22 22 21.6667 22 21.1667V2.83333C22 2.33333 21.6667 2 21.1667 2ZM7.91667 19.0833H5V9.5H8V19.0833H7.91667ZM6.41667 8.16667C5.5 8.16667 4.66667 7.41667 4.66667 6.41667C4.66667 5.5 5.41667 4.66667 6.41667 4.66667C7.33333 4.66667 8.16667 5.41667 8.16667 6.41667C8.16667 7.41667 7.41667 8.16667 6.41667 8.16667ZM19.0833 19.0833H16.0833V14.4167C16.0833 13.3333 16.0833 11.9167 14.5833 11.9167C13 11.9167 12.8333 13.0833 12.8333 14.3333V19.0833H9.83333V9.5H12.6667V10.8333C13.0833 10.0833 14 9.33333 15.5 9.33333C18.5 9.33333 19.0833 11.3333 19.0833 13.9167V19.0833Z" fill="currenColor"></path></svg></a></div><div class="of8kjr-6 cKzWZG"><a class="of8kjr-7 lbjAWJ cmc-link" href="https://www.instagram.com/coinmarketcap/" rel="noopener nofollow noreferrer" target="_blank" title="Instagram"><svg class="sc-AxhCb loZKFC" fill="currentColor" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M12 3.80167C14.67 3.80167 14.9867 3.81167 16.0408 3.86C17.1792 3.91167 18.235 4.14 19.0475 4.9525C19.86 5.765 20.0883 6.82083 20.14 7.95917C20.1883 9.01333 20.1983 9.33 20.1983 12C20.1983 14.67 20.1883 14.9867 20.14 16.0408C20.0883 17.1792 19.86 18.235 19.0475 19.0475C18.235 19.86 17.1792 20.0883 16.0408 20.14C14.9867 20.1883 14.67 20.1983 12 20.1983C9.33 20.1983 9.01333 20.1883 7.95917 20.14C6.82083 20.0883 5.765 19.86 4.9525 19.0475C4.14 18.235 3.91167 17.1792 3.86 16.0408C3.81167 14.9867 3.80167 14.67 3.80167 12C3.80167 9.33 3.81167 9.01333 3.86 7.95917C3.91167 6.82083 4.14 5.765 4.9525 4.9525C5.765 4.14 6.82083 3.91167 7.95917 3.86C9.01333 3.81167 9.33 3.80167 12 3.80167ZM12 2C9.28417 2 8.94333 2.01167 7.87667 2.06C6.25167 2.13417 4.82417 2.5325 3.67833 3.67833C2.5325 4.82417 2.13417 6.25167 2.06 7.87667C2.01167 8.94333 2 9.28417 2 12C2 14.7158 2.01167 15.0567 2.06 16.1233C2.13417 17.7483 2.5325 19.1758 3.67833 20.3217C4.82417 21.4675 6.25167 21.8658 7.87667 21.94C8.94333 21.9883 9.28417 22 12 22C14.7158 22 15.0567 21.9883 16.1233 21.94C17.7483 21.8658 19.1758 21.4675 20.3217 20.3217C21.4675 19.1758 21.8658 17.7483 21.94 16.1233C21.9883 15.0567 22 14.7158 22 12C22 9.28417 21.9883 8.94333 21.94 7.87667C21.8658 6.25167 21.4675 4.82417 20.3217 3.67833C19.1758 2.5325 17.7483 2.13417 16.1233 2.06C15.0567 2.01167 14.7158 2 12 2Z" fill="currenColor"></path><path d="M12 6.86497C9.16416 6.86497 6.865 9.16414 6.865 12C6.865 14.8358 9.16416 17.135 12 17.135C14.8358 17.135 17.135 14.8358 17.135 12C17.135 9.16414 14.8358 6.86497 12 6.86497ZM12 15.3333C10.1592 15.3333 8.66666 13.8408 8.66666 12C8.66666 10.1591 10.1592 8.66664 12 8.66664C13.8408 8.66664 15.3333 10.1591 15.3333 12C15.3333 13.8408 13.8408 15.3333 12 15.3333Z" fill="currenColor"></path><path d="M17.3384 7.86167C18.0011 7.86167 18.5384 7.32441 18.5384 6.66167C18.5384 5.99893 18.0011 5.46167 17.3384 5.46167C16.6756 5.46167 16.1384 5.99893 16.1384 6.66167C16.1384 7.32441 16.6756 7.86167 17.3384 7.86167Z" fill="currenColor"></path></svg></a></div><div class="of8kjr-6 cKzWZG"><a class="of8kjr-7 lbjAWJ cmc-link" href="https://www.reddit.com/r/CoinMarketCap" rel="noopener nofollow noreferrer" target="_blank" title="Reddit"><svg class="sc-AxhCb loZKFC" fill="currentColor" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M22 11.8218C22 10.396 20.9167 9.23762 19.5833 9.23762C19 9.23762 18.5 9.41584 18.0833 9.77228C16.5833 8.79208 14.75 8.16832 12.75 8.07921L13.75 4.60396L16.5833 5.31683C16.6667 6.38614 17.5 7.27723 18.5833 7.27723C19.6667 7.27723 20.5833 6.29703 20.5833 5.13861C20.5833 3.9802 19.6667 3 18.5833 3C17.8333 3 17.1667 3.44554 16.8333 4.15842L13.5 3.35644C13.25 3.26733 12.9167 3.44554 12.8333 3.71287L11.5833 8.07921C9.5 8.16832 7.41667 8.70297 5.91667 9.77228C5.5 9.41584 5 9.23762 4.41667 9.23762C3.08333 9.23762 2 10.396 2 11.8218C2 12.7129 2.41667 13.5149 3 13.9604C3 14.1386 3 14.4059 3 14.5842C3 16.3663 4 17.9703 5.75 19.2178C7.41667 20.3762 9.66667 21 12 21C14.3333 21 16.5833 20.3762 18.25 19.2178C20 17.9703 21 16.3663 21 14.5842C21 14.4059 21 14.2277 21 14.0495C21.5833 13.5149 22 12.7129 22 11.8218ZM18.6667 4.15842C19.1667 4.15842 19.5833 4.60396 19.5833 5.13861C19.5833 5.67327 19.1667 6.11881 18.6667 6.11881C18.1667 6.11881 17.75 5.67327 17.75 5.13861C17.75 4.60396 18.1667 4.15842 18.6667 4.15842ZM7.66667 13.4257C7.66667 12.6238 8.33333 12 9 12C9.75 12 10.3333 12.7129 10.3333 13.4257C10.3333 14.1386 9.75 14.8515 9 14.8515C8.33333 14.8515 7.66667 14.2277 7.66667 13.4257ZM15.3333 17.6139C14.6667 18.3267 13.5833 18.6832 12.0833 18.6832C10.5833 18.6832 9.5 18.3267 8.83333 17.6139C8.58333 17.3465 8.58333 16.9901 8.83333 16.8119C9.08333 16.5446 9.41667 16.5446 9.58333 16.8119C10.0833 17.3465 10.9167 17.6139 12.0833 17.6139C13.25 17.6139 14.0833 17.3465 14.5833 16.8119C14.8333 16.5446 15.1667 16.5446 15.3333 16.8119C15.5 17.0792 15.5 17.4356 15.3333 17.6139ZM15 14.8515C14.25 14.8515 13.5833 14.2277 13.5833 13.4257C13.5833 12.6238 14.25 12 15 12C15.75 12 16.3333 12.7129 16.3333 13.4257C16.3333 14.1386 15.75 14.8515 15 14.8515Z" fill="currenColor"></path></svg></a></div></div></div></div></div><div class="sc-18ghxad-0 ifvooB"><div class="container"><div class="cmc-global-stats__fade"></div><div class="cmc-global-stats__content"><div class="cmc-global-stats__inner-content"><span class="sc-12ja2s9-0 eALoKW">Market Cap<!-- -->:  <a class="cmc-link" href="/charts/">$1,475,809,405,042</a></span><span class="sc-12ja2s9-0 eALoKW">24h Vol<!-- -->:  <a class="cmc-link" href="/charts/">$135,046,987,299</a></span><span class="sc-12ja2s9-0 eALoKW">Dominance<!-- -->:  <a class="cmc-link" href="/charts/#dominance-percentage">BTC<!-- -->: <!-- -->60.6%<!-- --> <!-- -->ETH<!-- -->: <!-- -->11.9%</a></span><span class="sc-12ja2s9-0 eALoKW">Cryptocurrencies<!-- -->:  <a class="cmc-link" href="/all/views/all/">8,697</a></span><span class="sc-12ja2s9-0 eALoKW">Markets<!-- -->:  <a class="cmc-link" href="/currencies/volume/24-hour/">35,174</a></span><span class="sc-12ja2s9-0 eALoKW"><span class="icon-Gas-Filled" style="margin-right:4px;vertical-align:middle"></span>ETH Gas<!-- -->:  <a>90<!-- --> <!-- -->Gwei<span class="icon-Chevron-down gasDownIcon___T2cjc"></span></a></span></div></div></div></div></div></div><div class="sc-fzqARJ eLpUJW cmc-body-wrapper"><div class="grid"><div class="cmc-homepage"><section class="sc-AxhCb bkedAk" display="flex"><div class="sc-AxhCb dYbySe"><h1 class="sc-fzqBZW iVccbF" color="text" font-size="1,5">Today's Cryptocurrency Prices by Market Cap</h1><div class="sc-AxhCb bYwLMj"><div class="sc-AxhCb keRptt"><p class="sc-AxhUy gEvIrr" color="neutral6" font-size="1" style="display:inline">The global crypto market cap is <span class="sc-AxhUy diNEjy" color="neutral6" font-size="1" font-weight="semibold">$1.48T</span>, <!-- -->a <span class="sc-1puytyg-0 hFlcKs" style="color:var(--down-color);padding:0;border-radius:8px;font-weight:600"><span class="icon-Caret-down"></span>3.72<!-- -->%</span> decrease over the last day.</p><div class="sc-AxhCb sc-835z3x-0 eAFxmG" color="neutral5" style="display:inline-block;margin-left:0.5em">Read more</div></div></div><div style="display:none"><div class="sc-AxhCb guSXYp"><p class="sc-AxhUy evInTq" color="neutral6" font-size="1">The total crypto market volume over the last 24 hours is <span class="sc-AxhUy diNEjy" color="neutral6" font-size="1" font-weight="semibold">$135.05B</span>, which makes a <span class="sc-1puytyg-0 hFlcKs" style="color:var(--up-color);padding:0;border-radius:8px;font-weight:600"><span class="icon-Caret-up"></span>5.62<!-- -->%</span> increase.<!-- --> <!-- -->The total volume in DeFi is currently <span class="sc-AxhUy diNEjy" color="neutral6" font-size="1" font-weight="semibold">$12.18B</span>, <span class="sc-AxhUy diNEjy" color="neutral6" font-size="1" font-weight="semibold">9.02%</span> of the total crypto market 24-hour volume.<!-- --> <!-- -->The volume of all stable coins is now <span class="sc-AxhUy diNEjy" color="neutral6" font-size="1" font-weight="semibold">$110.70B</span>, which is <span class="sc-AxhUy diNEjy" color="neutral6" font-size="1" font-weight="semibold">81.97%</span> of the total crypto market 24-hour volume.</p><p class="sc-AxhUy gEvIrr" color="neutral6" font-size="1">Bitcoin's price is currently <span class="sc-AxhUy diNEjy" color="neutral6" font-size="1" font-weight="semibold">$47,709.82</span>.</p><p class="sc-AxhUy gEvIrr" color="neutral6" font-size="1">Bitcoin’s dominance is currently <span class="sc-AxhUy diNEjy" color="neutral6" font-size="1" font-weight="semibold">60.62%</span>, a decrease of <span class="sc-1puytyg-0 hFlcKs" style="color:var(--down-color);padding:0;border-radius:8px;font-weight:600"><span class="icon-Caret-down"></span>0.48<!-- -->%</span> over the day.</p></div></div></div><div class="sc-AxhCb kbfzRn" id="cmc-slot--leaderboard-top" width="100%"><div class="sc-1lqrwy2-0 xQvNt"><div class="horizontal-menu" style="align-items:center;display:flex;user-select:none"><div class="scroll-menu-arrow scroll-menu-arrow--disabled"><div class="sc-1lqrwy2-2 kASdkM"><div class="sc-1lqrwy2-3 dnuGLb"><div class="sc-1lqrwy2-1 iFclex"><svg class="sc-AxhCb iQwsru" fill="none" height="18px" viewbox="0 0 24 24" width="18px" xmlns="http://www.w3.org/2000/svg"><path d="M15 6L9 12L15 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div></div></div></div><div class="menu-wrapper" style="overflow:hidden;user-select:none"><div class="menu-wrapper--inner" style="transform:translate3d(0px, 0, 0);transition:transform 0s;width:990000px;text-align:left"><div class="menu-item-wrapper" role="button" style="display:inline-block" tabindex="0"><div class="sc-fznBMq ekttti"><div class="sc-fznNvL dJmEVA" width="304"><div class="sc-fzocqA dDnRxM" src="https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/603dd5aeedc95900191eadf4/1614666484628.png"></div><div class="sc-fzonZV fjLydT"><div class="sc-fzqyOu ifuegI">Take a quiz!</div><div class="sc-fzqKxP hKVgLq">Learn and earn $CKB</div></div></div></div></div><div class="menu-item-wrapper" role="button" style="display:inline-block" tabindex="0"><div class="sc-fznBMq ekttti"><div class="sc-fznNvL dJmEVA" width="304"><div class="sc-fzocqA jDLPo" src="https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/60386d82bc6ea500157b34fb/1614319262237.png"></div><div class="sc-fzonZV fjLydT"><div class="sc-fzqyOu ifuegI">Portfolio 🔥</div><div class="sc-fzqKxP hKVgLq">Track your trades in one place, not all over the place</div></div></div></div></div><div class="menu-item-wrapper" role="button" style="display:inline-block" tabindex="0"><div class="sc-fznBMq ekttti"><div class="sc-fznNvL dJmEVA" width="304"><div class="sc-fzocqA cjaGHS" src="https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/6038d61e3e919b0013d44cf2/1614337604165.png"></div><div class="sc-fzonZV fjLydT"><div class="sc-fzqyOu ifuegI">Alexandria Learning Corner</div><div class="sc-fzqKxP hKVgLq">Learn about yield farming! 👨‍🌾</div></div></div></div></div></div></div><div class="scroll-menu-arrow"><div class="sc-1lqrwy2-2 bdcCDi"><div class="sc-1lqrwy2-3 mhtTk"><div class="sc-1lqrwy2-1 iFclex"><svg class="sc-AxhCb iQwsru" fill="none" height="18px" viewbox="0 0 24 24" width="18px" xmlns="http://www.w3.org/2000/svg"><path d="M9 6L15 12L9 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div></div></div></div></div></div></div></section><div class="quq9zv-10 snkfi"><div class="quq9zv-9 bFptSr"><span><a class="cmc-link" href="/watchlist/"><button class="sc-Axmtr efDSWh quq9zv-2 quq9zv-5 hFppC"><span class="icon-Star"></span><span class="watchlist-star-text" style="margin:0px 0 0 4px;white-space:pre">Watchlist</span></button></a><a class="cmc-link" href="/portfolio-tracker"><button class="sc-Axmtr efDSWh quq9zv-2 quq9zv-5 hFppC"><svg class="sc-AxhCb loZKFC" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M13.8182 2H13V11H22V10.1818C22 5.68182 18.3182 2 13.8182 2Z" fill="#A6B0C3"></path><path d="M11.35 5H10.5C5.825 5 2 8.825 2 13.5C2 18.175 5.825 22 10.5 22C15.175 22 19 18.175 19 13.5V12.65H11.35V5Z" fill="#CFD6E4"></path></svg><span class="watchlist-star-text" style="margin:0px 0 0 4px;white-space:pre">Portfolio</span></button></a></span><span><button class="sc-Axmtr efDSWh quq9zv-3 dSenMZ table-control-filter"><span class="sc-AxmLO kdmeeD"><span class="icon-Slider"></span></span>Filters</button></span></div><div class="sc-AxhCb quq9zv-0 quq9zv-1 lfTRgy scroll-initial"><div class="leftArrow"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M15 6L9 12L15 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div><div class="sc-AxhCb bYwLMj table-link-area"><div class="quq9zv-8 ehWQdu"><a class="cmc-link" href="/watchlist/"><button class="sc-Axmtr efDSWh quq9zv-2 quq9zv-5 hFppC"><span class="icon-Star"></span><span class="watchlist-star-text" style="margin:0px 0 0 4px;white-space:pre">Watchlist</span></button></a><a class="cmc-link" href="/portfolio-tracker"><button class="sc-Axmtr efDSWh quq9zv-2 quq9zv-5 hFppC"><svg class="sc-AxhCb loZKFC" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M13.8182 2H13V11H22V10.1818C22 5.68182 18.3182 2 13.8182 2Z" fill="#A6B0C3"></path><path d="M11.35 5H10.5C5.825 5 2 8.825 2 13.5C2 18.175 5.825 22 10.5 22C15.175 22 19 18.175 19 13.5V12.65H11.35V5Z" fill="#CFD6E4"></path></svg><span class="watchlist-star-text" style="margin:0px 0 0 4px;white-space:pre">Portfolio</span></button></a><div class="quq9zv-6 hTjWKA"></div></div><a class="table-control-link-button cmc-link" href="/"><button class="sc-Axmtr kRJbDY quq9zv-2 hMHGsN" selected="">Cryptocurrencies</button></a><a class="table-control-link-button cmc-link" href="/defi/"><button class="sc-Axmtr kRJbDY quq9zv-2 dTfXAS">DeFi</button></a><a class="table-control-link-button cmc-link" href="/polkadot/"><button class="sc-Axmtr kRJbDY quq9zv-2 dTfXAS">Polkadot Eco</button></a><a class="table-control-link-button cmc-link" href="/nfts/"><button class="sc-Axmtr kRJbDY quq9zv-2 dTfXAS">NFTs &amp; Collectibles</button></a><a class="table-control-link-button cmc-link" href="/bsc/"><button class="sc-Axmtr kRJbDY quq9zv-2 dTfXAS">BSC Eco<span class="quq9zv-7 leKgbR"><div class="sc-188mhkv-0 kJsxWS"><div class="spinner"></div></div></span></button></a><a class="table-control-link-button cmc-link" href="/yield-farming/"><button class="sc-Axmtr kRJbDY quq9zv-2 dTfXAS">Yield Farming</button></a></div><div class="sc-AxhCb bYwLMj table-control-area"><div class="sc-AxhCb cUEIif table-control-page-sizer" display="flex" style="white-space:nowrap"><p class="sc-AxhUy jEtXdd" color="text2" font-size="12">Show rows</p><div class="sc-AxhCb sc-fzpdbB jPpwSF">100<svg class="sc-AxhCb dqoXIW" fill="none" height="14" viewbox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div></div><div class="quq9zv-8 ehWQdu"><button class="sc-Axmtr efDSWh quq9zv-3 dSenMZ table-control-filter"><span class="sc-AxmLO kdmeeD"><span class="icon-Slider"></span></span>Filters</button></div></div><div class="rightArrow"><svg class="sc-AxhCb loZKFC" fill="none" height="24px" viewbox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M9 6L15 12L9 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div></div></div><div class="tableWrapper___3utdq cmc-table-homepage-wrapper___22rL4"><table class="cmc-table cmc-table___11lFC cmc-table-homepage___2_guh"><colgroup><col style="width:50px;min-width:auto"/><col style="width:50px;min-width:auto"/><col style="width:250px;min-width:auto"/><col/><col style="width:84px;min-width:auto"/><col style="width:84px;min-width:auto"/><col style="width:200px;min-width:auto"/><col style="width:200px;min-width:auto"/><col style="width:200px;min-width:auto"/><col/><col style="width:50px;min-width:auto"/></colgroup><thead><tr><th class="stickyTop"></th><th class="stickyTop" style="text-align:left"><div class="sc-9dqrx-0 gwBIGi"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP rank-column-title" color="text" font-size="0">#</p><span class="icon-Caret-up" style="margin-left:4px"></span></div></div></th><th class="stickyTop" style="text-align:left"><div class="sc-9dqrx-0 gwBIGi"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" color="text" font-size="0">Name</p></div></div></th><th class="stickyTop"><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" color="text" font-size="0" style="white-space:nowrap">Price</p></div></div></th><th class="stickyTop" style="text-align:right"><div><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" color="text" font-size="0" style="white-space:nowrap">24h %</p></div></div></div></th><th class="stickyTop" style="text-align:right"><div><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" color="text" font-size="0" style="white-space:nowrap">7d %</p></div></div></div></th><th class="stickyTop" style="text-align:right"><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" color="text" font-size="0" style="white-space:nowrap">Market Cap</p></div><div class="rqf1px-2 dZrwAR"><svg class="sc-AxhCb bpYSuY" color="neutral4" fill="currentColor" height="16" viewbox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.48583 2 2 6.48583 2 12C2 17.5142 6.48583 22 12 22C17.5142 22 22 17.5142 22 12C22 6.48583 17.5142 2 12 2ZM14.215 17.2367C13.6642 17.4533 11.755 18.365 10.655 17.3958C10.3267 17.1075 10.1633 16.7417 10.1633 16.2975C10.1633 15.4658 10.4367 14.7408 10.9292 13C11.0158 12.6708 11.1217 12.2442 11.1217 11.9058C11.1217 11.3217 10.9 11.1667 10.2992 11.1667C10.0058 11.1667 9.68083 11.2708 9.38667 11.3808L9.54917 10.715C10.205 10.4483 11.0283 10.1233 11.7333 10.1233C12.7908 10.1233 13.5692 10.6508 13.5692 11.6542C13.5692 11.9433 13.5192 12.45 13.4142 12.8L12.8058 14.9517C12.68 15.3867 12.4525 16.3458 12.805 16.63C13.1517 16.9108 13.9725 16.7617 14.3775 16.5708L14.215 17.2367ZM13.21 8.66667C12.52 8.66667 11.96 8.10667 11.96 7.41667C11.96 6.72667 12.52 6.16667 13.21 6.16667C13.9 6.16667 14.46 6.72667 14.46 7.41667C14.46 8.10667 13.9 8.66667 13.21 8.66667Z"></path></svg></div></div></th><th class="stickyTop" style="text-align:right"><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" color="text" font-size="0" style="white-space:nowrap">Volume(24h)</p></div><div class="rqf1px-2 dZrwAR"><svg class="sc-AxhCb bpYSuY" color="neutral4" fill="currentColor" height="16" viewbox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.48583 2 2 6.48583 2 12C2 17.5142 6.48583 22 12 22C17.5142 22 22 17.5142 22 12C22 6.48583 17.5142 2 12 2ZM14.215 17.2367C13.6642 17.4533 11.755 18.365 10.655 17.3958C10.3267 17.1075 10.1633 16.7417 10.1633 16.2975C10.1633 15.4658 10.4367 14.7408 10.9292 13C11.0158 12.6708 11.1217 12.2442 11.1217 11.9058C11.1217 11.3217 10.9 11.1667 10.2992 11.1667C10.0058 11.1667 9.68083 11.2708 9.38667 11.3808L9.54917 10.715C10.205 10.4483 11.0283 10.1233 11.7333 10.1233C12.7908 10.1233 13.5692 10.6508 13.5692 11.6542C13.5692 11.9433 13.5192 12.45 13.4142 12.8L12.8058 14.9517C12.68 15.3867 12.4525 16.3458 12.805 16.63C13.1517 16.9108 13.9725 16.7617 14.3775 16.5708L14.215 17.2367ZM13.21 8.66667C12.52 8.66667 11.96 8.10667 11.96 7.41667C11.96 6.72667 12.52 6.16667 13.21 6.16667C13.9 6.16667 14.46 6.72667 14.46 7.41667C14.46 8.10667 13.9 8.66667 13.21 8.66667Z"></path></svg></div></div></th><th class="stickyTop" style="text-align:right"><div class="sc-9dqrx-0 inEvJB"><div class="sc-9dqrx-1 gYhBqs"><p class="sc-AxhUy cgLliP" color="text" font-size="0" style="white-space:nowrap">Circulating Supply</p></div><div class="rqf1px-2 dZrwAR"><svg class="sc-AxhCb bpYSuY" color="neutral4" fill="currentColor" height="16" viewbox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.48583 2 2 6.48583 2 12C2 17.5142 6.48583 22 12 22C17.5142 22 22 17.5142 22 12C22 6.48583 17.5142 2 12 2ZM14.215 17.2367C13.6642 17.4533 11.755 18.365 10.655 17.3958C10.3267 17.1075 10.1633 16.7417 10.1633 16.2975C10.1633 15.4658 10.4367 14.7408 10.9292 13C11.0158 12.6708 11.1217 12.2442 11.1217 11.9058C11.1217 11.3217 10.9 11.1667 10.2992 11.1667C10.0058 11.1667 9.68083 11.2708 9.38667 11.3808L9.54917 10.715C10.205 10.4483 11.0283 10.1233 11.7333 10.1233C12.7908 10.1233 13.5692 10.6508 13.5692 11.6542C13.5692 11.9433 13.5192 12.45 13.4142 12.8L12.8058 14.9517C12.68 15.3867 12.4525 16.3458 12.805 16.63C13.1517 16.9108 13.9725 16.7617 14.3775 16.5708L14.215 17.2367ZM13.21 8.66667C12.52 8.66667 11.96 8.10667 11.96 7.41667C11.96 6.72667 12.52 6.16667 13.21 6.16667C13.9 6.16667 14.46 6.72667 14.46 7.41667C14.46 8.10667 13.9 8.66667 13.21 8.66667Z"></path></svg></div></div></th><th class="stickyTop" style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="font-size:12px">Last 7 Days</p></th><th class="stickyTop"></th></tr></thead><tbody><tr><td><span></span></td><td style="text-align:left"><p class="sc-AxhUy cEPKAB" color="text2" font-size="0">1</p></td><td style="text-align:left"><a class="cmc-link" href="/currencies/bitcoin/"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/1.png"/><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p class="sc-AxhUy fqrLrs" color="text" font-size="1" font-weight="semibold">Bitcoin</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">1</div><p class="sc-AxhUy bzeXdk coin-item-symbol" color="text3" font-size="1">BTC</p></div></div></div></a></td><td><div class="price___3rj7O"><a class="cmc-link" href="/currencies/bitcoin/markets/">$47,701.18</a></div></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>5.98<!-- -->%</span></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>0.30<!-- -->%</span></td><td style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="white-space:nowrap">$889,382,738,131</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a class="cmc-link" href="/currencies/bitcoin/markets/"><p class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text" font-size="1">$51,383,310,634</p></a><p class="sc-AxhUy cEPKAB" color="text2" font-size="0" style="white-space:nowrap">1,077,192 BTC</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p class="sc-AxhUy ghbWav" color="text" font-size="1" font-weight="medium">18,644,881 BTC</p></div><div class="sc-fznzqM YdPrA" width="160"><div class="sc-fznOgF hTcCKn" width="143"></div></div></div></td><td style="text-align:right"><a class="cmc-link" href="/currencies/bitcoin/"><img alt="1-price-graph" class="tableGraph___c_IY- graphDown___2-1G6" src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/1.png"/></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p class="sc-AxhUy cEPKAB" color="text2" font-size="0">2</p></td><td style="text-align:left"><a class="cmc-link" href="/currencies/ethereum/"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/1027.png"/><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p class="sc-AxhUy fqrLrs" color="text" font-size="1" font-weight="semibold">Ethereum</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">2</div><p class="sc-AxhUy bzeXdk coin-item-symbol" color="text3" font-size="1">ETH</p></div></div></div></a></td><td><div class="price___3rj7O"><a class="cmc-link" href="/currencies/ethereum/markets/">$1,520.27</a></div></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>4.01<!-- -->%</span></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--up-color);padding:0;border-radius:8px"><span class="icon-Caret-up"></span>1.12<!-- -->%</span></td><td style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="white-space:nowrap">$174,703,591,024</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a class="cmc-link" href="/currencies/ethereum/markets/"><p class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text" font-size="1">$22,561,119,696</p></a><p class="sc-AxhUy cEPKAB" color="text2" font-size="0" style="white-space:nowrap">14,840,222 ETH</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><p class="sc-AxhUy ghbWav" color="text" font-size="1" font-weight="medium">114,916,286 ETH</p></div></div></td><td style="text-align:right"><a class="cmc-link" href="/currencies/ethereum/"><img alt="1027-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/1027.png"/></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p class="sc-AxhUy cEPKAB" color="text2" font-size="0">3</p></td><td style="text-align:left"><a class="cmc-link" href="/currencies/tether/"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/825.png"/><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p class="sc-AxhUy fqrLrs" color="text" font-size="1" font-weight="semibold">Tether</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">3</div><p class="sc-AxhUy bzeXdk coin-item-symbol" color="text3" font-size="1">USDT</p></div></div></div></a></td><td><div class="price___3rj7O"><a class="cmc-link" href="/currencies/tether/markets/">$1.00</a></div></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>0.04<!-- -->%</span></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--up-color);padding:0;border-radius:8px"><span class="icon-Caret-up"></span>0.01<!-- -->%</span></td><td style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="white-space:nowrap">$36,264,314,151</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a class="cmc-link" href="/currencies/tether/markets/"><p class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text" font-size="1">$101,732,079,870</p></a><p class="sc-AxhUy cEPKAB" color="text2" font-size="0" style="white-space:nowrap">101,730,923,814 USDT</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><p class="sc-AxhUy ghbWav" color="text" font-size="1" font-weight="medium">36,263,902,054 USDT</p></div></div></td><td style="text-align:right"><a class="cmc-link" href="/currencies/tether/"><img alt="825-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/825.png"/></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p class="sc-AxhUy cEPKAB" color="text2" font-size="0">4</p></td><td style="text-align:left"><a class="cmc-link" href="/currencies/cardano/"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/2010.png"/><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p class="sc-AxhUy fqrLrs" color="text" font-size="1" font-weight="semibold">Cardano</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">4</div><p class="sc-AxhUy bzeXdk coin-item-symbol" color="text3" font-size="1">ADA</p></div></div></div></a></td><td><div class="price___3rj7O"><a class="cmc-link" href="/currencies/cardano/markets/">$1.10</a></div></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>10.38<!-- -->%</span></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--up-color);padding:0;border-radius:8px"><span class="icon-Caret-up"></span>0.25<!-- -->%</span></td><td style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="white-space:nowrap">$35,042,951,182</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a class="cmc-link" href="/currencies/cardano/markets/"><p class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text" font-size="1">$7,119,379,841</p></a><p class="sc-AxhUy cEPKAB" color="text2" font-size="0" style="white-space:nowrap">6,490,667,667 ADA</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p class="sc-AxhUy ghbWav" color="text" font-size="1" font-weight="medium">31,948,309,441 ADA</p></div><div class="sc-fznzqM YdPrA" width="160"><div class="sc-fznOgF hTcEKp" width="114"></div></div></div></td><td style="text-align:right"><a class="cmc-link" href="/currencies/cardano/"><img alt="2010-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/2010.png"/></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p class="sc-AxhUy cEPKAB" color="text2" font-size="0">5</p></td><td style="text-align:left"><a class="cmc-link" href="/currencies/binance-coin/"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/1839.png"/><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p class="sc-AxhUy fqrLrs" color="text" font-size="1" font-weight="semibold">Binance Coin</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">5</div><p class="sc-AxhUy bzeXdk coin-item-symbol" color="text3" font-size="1">BNB</p></div></div></div></a></td><td><div class="price___3rj7O"><a class="cmc-link" href="/currencies/binance-coin/markets/">$226.77</a></div></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>6.72<!-- -->%</span></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>5.84<!-- -->%</span></td><td style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="white-space:nowrap">$35,042,655,439</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a class="cmc-link" href="/currencies/binance-coin/markets/"><p class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text" font-size="1">$5,547,625,433</p></a><p class="sc-AxhUy cEPKAB" color="text2" font-size="0" style="white-space:nowrap">24,464,185 BNB</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p class="sc-AxhUy ghbWav" color="text" font-size="1" font-weight="medium">154,532,785 BNB</p></div><div class="sc-fznzqM YdPrA" width="160"><div class="sc-fznOgF hTcFaR" width="145"></div></div></div></td><td style="text-align:right"><a class="cmc-link" href="/currencies/binance-coin/"><img alt="1839-price-graph" class="tableGraph___c_IY- graphDown___2-1G6" src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/1839.png"/></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p class="sc-AxhUy cEPKAB" color="text2" font-size="0">6</p></td><td style="text-align:left"><a class="cmc-link" href="/currencies/polkadot-new/"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/6636.png"/><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p class="sc-AxhUy fqrLrs" color="text" font-size="1" font-weight="semibold">Polkadot</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">6</div><p class="sc-AxhUy bzeXdk coin-item-symbol" color="text3" font-size="1">DOT</p></div></div></div></a></td><td><div class="price___3rj7O"><a class="cmc-link" href="/currencies/polkadot-new/markets/">$34.91</a></div></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>6.27<!-- -->%</span></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--up-color);padding:0;border-radius:8px"><span class="icon-Caret-up"></span>9.29<!-- -->%</span></td><td style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="white-space:nowrap">$31,952,463,687</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a class="cmc-link" href="/currencies/polkadot-new/markets/"><p class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text" font-size="1">$2,773,955,506</p></a><p class="sc-AxhUy cEPKAB" color="text2" font-size="0" style="white-space:nowrap">79,450,103 DOT</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><p class="sc-AxhUy ghbWav" color="text" font-size="1" font-weight="medium">915,164,829 DOT</p></div></div></td><td style="text-align:right"><a class="cmc-link" href="/currencies/polkadot-new/"><img alt="6636-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/6636.png"/></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p class="sc-AxhUy cEPKAB" color="text2" font-size="0">7</p></td><td style="text-align:left"><a class="cmc-link" href="/currencies/xrp/"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/52.png"/><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p class="sc-AxhUy fqrLrs" color="text" font-size="1" font-weight="semibold">XRP</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">7</div><p class="sc-AxhUy bzeXdk coin-item-symbol" color="text3" font-size="1">XRP</p></div></div></div></a></td><td><div class="price___3rj7O"><a class="cmc-link" href="/currencies/xrp/markets/">$0.476</a></div></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--up-color);padding:0;border-radius:8px"><span class="icon-Caret-up"></span>5.67<!-- -->%</span></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--up-color);padding:0;border-radius:8px"><span class="icon-Caret-up"></span>6.16<!-- -->%</span></td><td style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="white-space:nowrap">$21,612,248,478</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a class="cmc-link" href="/currencies/xrp/markets/"><p class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text" font-size="1">$5,999,849,408</p></a><p class="sc-AxhUy cEPKAB" color="text2" font-size="0" style="white-space:nowrap">12,604,765,979 XRP</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p class="sc-AxhUy ghbWav" color="text" font-size="1" font-weight="medium">45,404,028,640 XRP</p></div><div class="sc-fznzqM YdPrA" width="160"><div class="sc-fznOgF cGZXtd" width="73"></div></div></div></td><td style="text-align:right"><a class="cmc-link" href="/currencies/xrp/"><img alt="52-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/52.png"/></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p class="sc-AxhUy cEPKAB" color="text2" font-size="0">8</p></td><td style="text-align:left"><a class="cmc-link" href="/currencies/litecoin/"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/2.png"/><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p class="sc-AxhUy fqrLrs" color="text" font-size="1" font-weight="semibold">Litecoin</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">8</div><p class="sc-AxhUy bzeXdk coin-item-symbol" color="text3" font-size="1">LTC</p></div></div></div></a></td><td><div class="price___3rj7O"><a class="cmc-link" href="/currencies/litecoin/markets/">$178.31</a></div></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>5.55<!-- -->%</span></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>3.32<!-- -->%</span></td><td style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="white-space:nowrap">$11,874,669,010</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a class="cmc-link" href="/currencies/litecoin/markets/"><p class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text" font-size="1">$5,418,155,607</p></a><p class="sc-AxhUy cEPKAB" color="text2" font-size="0" style="white-space:nowrap">30,386,086 LTC</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p class="sc-AxhUy ghbWav" color="text" font-size="1" font-weight="medium">66,595,488 LTC</p></div><div class="sc-fznzqM YdPrA" width="160"><div class="sc-fznOgF hTcEoN" width="127"></div></div></div></td><td style="text-align:right"><a class="cmc-link" href="/currencies/litecoin/"><img alt="2-price-graph" class="tableGraph___c_IY- graphDown___2-1G6" src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/2.png"/></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p class="sc-AxhUy cEPKAB" color="text2" font-size="0">9</p></td><td style="text-align:left"><a class="cmc-link" href="/currencies/chainlink/"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/1975.png"/><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p class="sc-AxhUy fqrLrs" color="text" font-size="1" font-weight="semibold">Chainlink</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">9</div><p class="sc-AxhUy bzeXdk coin-item-symbol" color="text3" font-size="1">LINK</p></div></div></div></a></td><td><div class="price___3rj7O"><a class="cmc-link" href="/currencies/chainlink/markets/">$27.24</a></div></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>9.65<!-- -->%</span></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--up-color);padding:0;border-radius:8px"><span class="icon-Caret-up"></span>6.83<!-- -->%</span></td><td style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="white-space:nowrap">$11,167,753,558</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a class="cmc-link" href="/currencies/chainlink/markets/"><p class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text" font-size="1">$1,887,333,365</p></a><p class="sc-AxhUy cEPKAB" color="text2" font-size="0" style="white-space:nowrap">69,290,991 LINK</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p class="sc-AxhUy ghbWav" color="text" font-size="1" font-weight="medium">410,009,556 LINK</p></div><div class="sc-fznzqM YdPrA" width="160"><div class="sc-fznOgF cGZXuR" width="66"></div></div></div></td><td style="text-align:right"><a class="cmc-link" href="/currencies/chainlink/"><img alt="1975-price-graph" class="tableGraph___c_IY- graphUp___2IEcj" src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/1975.png"/></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr><td><span></span></td><td style="text-align:left"><p class="sc-AxhUy cEPKAB" color="text2" font-size="0">10</p></td><td style="text-align:left"><a class="cmc-link" href="/currencies/bitcoin-cash/"><div class="sc-AxhCb sc-fznLPX BewUF"><img class="coin-logo" src="https://s2.coinmarketcap.com/static/img/coins/64x64/1831.png"/><div class="sc-AxhCb sc-fzoaKM cbJhSy"><p class="sc-AxhUy fqrLrs" color="text" font-size="1" font-weight="semibold">Bitcoin Cash</p><div class="sc-fzomuh gHzJiR"><div class="sc-fzqAui kwdPny">10</div><p class="sc-AxhUy bzeXdk coin-item-symbol" color="text3" font-size="1">BCH</p></div></div></div></a></td><td><div class="price___3rj7O"><a class="cmc-link" href="/currencies/bitcoin-cash/markets/">$500.98</a></div></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>4.95<!-- -->%</span></td><td style="text-align:right"><span class="sc-1v2ivon-0 gClTFY" style="color:var(--down-color);padding:0;border-radius:8px"><span class="icon-Caret-down"></span>1.14<!-- -->%</span></td><td style="text-align:right"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1" style="white-space:nowrap">$9,353,699,464</p></td><td style="text-align:right"><div class="sc-AxhCb sc-1anvaoh-0 gxonsA"><a class="cmc-link" href="/currencies/bitcoin-cash/markets/"><p class="sc-AxhUy kVvvpJ font_weight_500___2Lmmi" color="text" font-size="1">$3,657,231,373</p></a><p class="sc-AxhUy cEPKAB" color="text2" font-size="0" style="white-space:nowrap">7,300,150 BCH</p></div></td><td style="text-align:right"><div class="sc-AxhCb sc-fznYue cGmhlU"><div class="sc-AxhCb sc-fzonjX brDbgg"><div class="sc-fzoCCn lewZOv"><span class="icon-Info"></span></div><p class="sc-AxhUy ghbWav" color="text" font-size="1" font-weight="medium">18,670,794 BCH</p></div><div class="sc-fznzqM YdPrA" width="160"><div class="sc-fznOgF hTcCKn" width="143"></div></div></div></td><td style="text-align:right"><a class="cmc-link" href="/currencies/bitcoin-cash/"><img alt="1831-price-graph" class="tableGraph___c_IY- graphDown___2-1G6" src="https://s3.coinmarketcap.com/generated/sparklines/web/7d/usd/1831.png"/></a></td><td><div class="sc-AxhCb bYwLMj"><button class="sc-Axmtr bJMCAy sc-fzqNJr fvNIAx"><span class="icon-More-Vertical"></span></button></div></td></tr><tr class="sc-15ks4ej-1 fENxkl"><td class="sc-15ks4ej-0 fpuWWI" colspan="100%"><div class="sc-oTbqq fsuEer cmc-native-ad-row"><div class="sc-paXsP eqYpxV" src="https://s2.coinmarketcap.com/static/cloud/img/header-banner/cryptocom.png?_=29bbdee"></div><div class="sc-pjSSY dAvxTh"><div class="sc-prOVx hQWxaP">Crypto.com DeFi Wallet - Best Place to Manage, Swap &amp; Farm DeFi Tokens</div><div class="sc-qQmou frETCJ">Securely Manage, Swap &amp; Farm DeFi Tokens, including UNI, COMP, YFI, CRO, AAVE.
Boost your yields by up to 20x when you stake CRO!</div></div><div class="sc-qYiqT gdJhvk"><button class="sc-Axmtr iJxTJr">Get App Now</button><div class="s-area"><svg fill="none" height="16" viewbox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M13.9126 9.56098C13.6294 9.73737 13.2958 9.75922 13.0423 9.61834C12.7203 9.43922 12.5433 9.01971 12.5433 8.43629V6.69073C12.5433 5.8478 12.205 5.248 11.6394 5.08605C10.6808 4.81093 9.9599 5.96644 9.68897 6.40039L7.99842 9.10088V5.8002C7.97941 5.04078 7.72908 4.58654 7.25376 4.44956C6.93925 4.35902 6.46869 4.39532 6.01159 5.08449L2.22409 11.0763C1.71704 10.1279 1.45271 9.0719 1.45408 8C1.45408 4.39063 4.38996 1.45444 7.99842 1.45444C11.6069 1.45444 14.5424 4.39063 14.5424 8C14.5424 8.00624 14.544 8.01171 14.5444 8.01756C14.5444 8.0238 14.5432 8.02927 14.5436 8.03551C14.5776 8.73444 14.3479 9.29054 13.9126 9.56137V9.56098ZM15.9965 8.00039V8V7.98205L15.9961 7.9641C15.9759 3.56839 12.3963 0 7.99803 0C3.58826 0 0 3.58868 0 8C0 12.4109 3.58826 16 7.99842 16C10.0221 16 11.9535 15.2421 13.4361 13.8665C13.7308 13.5934 13.7482 13.1333 13.4749 12.839C13.3449 12.6978 13.1628 12.6141 12.9695 12.6068C12.7762 12.5995 12.588 12.6691 12.4474 12.8C11.2457 13.9212 9.65346 14.5459 7.99842 14.5456C6.06625 14.5456 4.32778 13.703 3.12878 12.3668L6.54434 6.96351V9.45444C6.54434 10.6509 7.01531 11.0377 7.41022 11.1508C7.80552 11.264 8.40957 11.1867 9.04373 10.1721L10.9224 7.17151C10.9826 7.07473 11.0381 6.99122 11.0888 6.91902V8.43629C11.0888 9.55473 11.5435 10.4492 12.3361 10.8898C13.0507 11.287 13.949 11.2511 14.681 10.7961C15.5683 10.2439 16.0464 9.22654 15.9965 8.00039Z" fill="currentColor"></path></svg><p class="sc-AxhUy bduqLR s-text" color="text" font-size="11px">Sponsored</p></div></div></div></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/stellar/"><span class="circle"></span><span>Stellar</span><span class="crypto-symbol">XLM</span></a></td><td><span>$<!-- -->0.41</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/usd-coin/"><span class="circle"></span><span>USD Coin</span><span class="crypto-symbol">USDC</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/uniswap/"><span class="circle"></span><span>Uniswap</span><span class="crypto-symbol">UNI</span></a></td><td><span>$<!-- -->27.46</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/dogecoin/"><span class="circle"></span><span>Dogecoin</span><span class="crypto-symbol">DOGE</span></a></td><td><span>$<!-- -->0.05</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/nem/"><span class="circle"></span><span>NEM</span><span class="crypto-symbol">XEM</span></a></td><td><span>$<!-- -->0.69</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/wrapped-bitcoin/"><span class="circle"></span><span>Wrapped Bitcoin</span><span class="crypto-symbol">WBTC</span></a></td><td><span>$<!-- -->47946.52</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/aave/"><span class="circle"></span><span>Aave</span><span class="crypto-symbol">AAVE</span></a></td><td><span>$<!-- -->368.62</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/theta/"><span class="circle"></span><span>THETA</span><span class="crypto-symbol">THETA</span></a></td><td><span>$<!-- -->4.38</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/cosmos/"><span class="circle"></span><span>Cosmos</span><span class="crypto-symbol">ATOM</span></a></td><td><span>$<!-- -->18.57</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/monero/"><span class="circle"></span><span>Monero</span><span class="crypto-symbol">XMR</span></a></td><td><span>$<!-- -->214.14</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/tron/"><span class="circle"></span><span>TRON</span><span class="crypto-symbol">TRX</span></a></td><td><span>$<!-- -->0.05</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/crypto-com-coin/"><span class="circle"></span><span>Crypto.com Coin</span><span class="crypto-symbol">CRO</span></a></td><td><span>$<!-- -->0.15</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/eos/"><span class="circle"></span><span>EOS</span><span class="crypto-symbol">EOS</span></a></td><td><span>$<!-- -->3.71</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/iota/"><span class="circle"></span><span>IOTA</span><span class="crypto-symbol">MIOTA</span></a></td><td><span>$<!-- -->1.23</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/solana/"><span class="circle"></span><span>Solana</span><span class="crypto-symbol">SOL</span></a></td><td><span>$<!-- -->12.90</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/bitcoin-sv/"><span class="circle"></span><span>Bitcoin SV</span><span class="crypto-symbol">BSV</span></a></td><td><span>$<!-- -->179.79</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/vechain/"><span class="circle"></span><span>VeChain</span><span class="crypto-symbol">VET</span></a></td><td><span>$<!-- -->0.05</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/terra-luna/"><span class="circle"></span><span>Terra</span><span class="crypto-symbol">LUNA</span></a></td><td><span>$<!-- -->7.31</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/binance-usd/"><span class="circle"></span><span>Binance USD</span><span class="crypto-symbol">BUSD</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/huobi-token/"><span class="circle"></span><span>Huobi Token</span><span class="crypto-symbol">HT</span></a></td><td><span>$<!-- -->15.48</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/tezos/"><span class="circle"></span><span>Tezos</span><span class="crypto-symbol">XTZ</span></a></td><td><span>$<!-- -->3.61</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/ftx-token/"><span class="circle"></span><span>FTX Token</span><span class="crypto-symbol">FTT</span></a></td><td><span>$<!-- -->29.05</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/neo/"><span class="circle"></span><span>Neo</span><span class="crypto-symbol">NEO</span></a></td><td><span>$<!-- -->37.32</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/multi-collateral-dai/"><span class="circle"></span><span>Dai</span><span class="crypto-symbol">DAI</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/elrond-egld/"><span class="circle"></span><span>Elrond</span><span class="crypto-symbol">EGLD</span></a></td><td><span>$<!-- -->146.61</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/synthetix-network-token/"><span class="circle"></span><span>Synthetix</span><span class="crypto-symbol">SNX</span></a></td><td><span>$<!-- -->21.18</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/algorand/"><span class="circle"></span><span>Algorand</span><span class="crypto-symbol">ALGO</span></a></td><td><span>$<!-- -->1.07</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/filecoin/"><span class="circle"></span><span>Filecoin</span><span class="crypto-symbol">FIL</span></a></td><td><span>$<!-- -->40.27</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/the-graph/"><span class="circle"></span><span>The Graph</span><span class="crypto-symbol">GRT</span></a></td><td><span>$<!-- -->1.81</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/compound/"><span class="circle"></span><span>Compound</span><span class="crypto-symbol">COMP</span></a></td><td><span>$<!-- -->466.32</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/sushiswap/"><span class="circle"></span><span>SushiSwap</span><span class="crypto-symbol">SUSHI</span></a></td><td><span>$<!-- -->16.98</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/maker/"><span class="circle"></span><span>Maker</span><span class="crypto-symbol">MKR</span></a></td><td><span>$<!-- -->2153.11</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/dash/"><span class="circle"></span><span>Dash</span><span class="crypto-symbol">DASH</span></a></td><td><span>$<!-- -->208.23</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/kusama/"><span class="circle"></span><span>Kusama</span><span class="crypto-symbol">KSM</span></a></td><td><span>$<!-- -->231.24</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/avalanche/"><span class="circle"></span><span>Avalanche</span><span class="crypto-symbol">AVAX</span></a></td><td><span>$<!-- -->24.84</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/unus-sed-leo/"><span class="circle"></span><span>UNUS SED LEO</span><span class="crypto-symbol">LEO</span></a></td><td><span>$<!-- -->1.90</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/decred/"><span class="circle"></span><span>Decred</span><span class="crypto-symbol">DCR</span></a></td><td><span>$<!-- -->141.04</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/pancakeswap/"><span class="circle"></span><span>PancakeSwap</span><span class="crypto-symbol">CAKE</span></a></td><td><span>$<!-- -->11.34</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/near-protocol/"><span class="circle"></span><span>NEAR Protocol</span><span class="crypto-symbol">NEAR</span></a></td><td><span>$<!-- -->4.46</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/zcash/"><span class="circle"></span><span>Zcash</span><span class="crypto-symbol">ZEC</span></a></td><td><span>$<!-- -->119.80</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/zilliqa/"><span class="circle"></span><span>Zilliqa</span><span class="crypto-symbol">ZIL</span></a></td><td><span>$<!-- -->0.12</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/ethereum-classic/"><span class="circle"></span><span>Ethereum Classic</span><span class="crypto-symbol">ETC</span></a></td><td><span>$<!-- -->10.88</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/voyager-token/"><span class="circle"></span><span>Voyager Token</span><span class="crypto-symbol">VGX</span></a></td><td><span>$<!-- -->5.61</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/nexo/"><span class="circle"></span><span>Nexo</span><span class="crypto-symbol">NEXO</span></a></td><td><span>$<!-- -->2.18</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/bitcoin-bep2/"><span class="circle"></span><span>Bitcoin BEP2</span><span class="crypto-symbol">BTCB</span></a></td><td><span>$<!-- -->48216.31</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/thorchain/"><span class="circle"></span><span>THORChain</span><span class="crypto-symbol">RUNE</span></a></td><td><span>$<!-- -->5.11</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/ravencoin/"><span class="circle"></span><span>Ravencoin</span><span class="crypto-symbol">RVN</span></a></td><td><span>$<!-- -->0.15</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/bittorrent/"><span class="circle"></span><span>BitTorrent</span><span class="crypto-symbol">BTT</span></a></td><td><span>$<!-- -->0.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/yearn-finance/"><span class="circle"></span><span>yearn.finance</span><span class="crypto-symbol">YFI</span></a></td><td><span>$<!-- -->31826.04</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/hedera-hashgraph/"><span class="circle"></span><span>Hedera Hashgraph</span><span class="crypto-symbol">HBAR</span></a></td><td><span>$<!-- -->0.15</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/uma/"><span class="circle"></span><span>UMA</span><span class="crypto-symbol">UMA</span></a></td><td><span>$<!-- -->20.64</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/fantom/"><span class="circle"></span><span>Fantom</span><span class="crypto-symbol">FTM</span></a></td><td><span>$<!-- -->0.44</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/icon/"><span class="circle"></span><span>ICON</span><span class="crypto-symbol">ICX</span></a></td><td><span>$<!-- -->1.89</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/celsius/"><span class="circle"></span><span>Celsius</span><span class="crypto-symbol">CEL</span></a></td><td><span>$<!-- -->4.50</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/enjin-coin/"><span class="circle"></span><span>Enjin Coin</span><span class="crypto-symbol">ENJ</span></a></td><td><span>$<!-- -->1.26</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/revain/"><span class="circle"></span><span>Revain</span><span class="crypto-symbol">REV</span></a></td><td><span>$<!-- -->0.01</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/0x/"><span class="circle"></span><span>0x</span><span class="crypto-symbol">ZRX</span></a></td><td><span>$<!-- -->1.35</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/okb/"><span class="circle"></span><span>OKB</span><span class="crypto-symbol">OKB</span></a></td><td><span>$<!-- -->17.06</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/ren/"><span class="circle"></span><span>Ren</span><span class="crypto-symbol">REN</span></a></td><td><span>$<!-- -->1.02</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/basic-attention-token/"><span class="circle"></span><span>Basic Attention Token</span><span class="crypto-symbol">BAT</span></a></td><td><span>$<!-- -->0.68</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/bancor/"><span class="circle"></span><span>Bancor</span><span class="crypto-symbol">BNT</span></a></td><td><span>$<!-- -->6.65</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/waves/"><span class="circle"></span><span>Waves</span><span class="crypto-symbol">WAVES</span></a></td><td><span>$<!-- -->9.32</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/polygon/"><span class="circle"></span><span>Polygon</span><span class="crypto-symbol">MATIC</span></a></td><td><span>$<!-- -->0.20</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/swissborg/"><span class="circle"></span><span>SwissBorg</span><span class="crypto-symbol">CHSB</span></a></td><td><span>$<!-- -->1.01</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/flow/"><span class="circle"></span><span>Flow</span><span class="crypto-symbol">FLOW</span></a></td><td><span>$<!-- -->38.16</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/stacks/"><span class="circle"></span><span>Stacks</span><span class="crypto-symbol">STX</span></a></td><td><span>$<!-- -->1.18</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/renbtc/"><span class="circle"></span><span>renBTC</span><span class="crypto-symbol">RENBTC</span></a></td><td><span>$<!-- -->47927.24</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/digibyte/"><span class="circle"></span><span>DigiByte</span><span class="crypto-symbol">DGB</span></a></td><td><span>$<!-- -->0.06</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/ontology/"><span class="circle"></span><span>Ontology</span><span class="crypto-symbol">ONT</span></a></td><td><span>$<!-- -->0.95</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/husd/"><span class="circle"></span><span>HUSD</span><span class="crypto-symbol">HUSD</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/terrausd/"><span class="circle"></span><span>TerraUSD</span><span class="crypto-symbol">UST</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/theta-fuel/"><span class="circle"></span><span>Theta Fuel</span><span class="crypto-symbol">TFUEL</span></a></td><td><span>$<!-- -->0.14</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/iostoken/"><span class="circle"></span><span>IOST</span><span class="crypto-symbol">IOST</span></a></td><td><span>$<!-- -->0.04</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/zkswap/"><span class="circle"></span><span>ZKSwap</span><span class="crypto-symbol">ZKS</span></a></td><td><span>$<!-- -->3.64</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/celo/"><span class="circle"></span><span>Celo</span><span class="crypto-symbol">CELO</span></a></td><td><span>$<!-- -->3.77</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/paxos-standard/"><span class="circle"></span><span>Paxos Standard</span><span class="crypto-symbol">PAX</span></a></td><td><span>$<!-- -->1.00</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/nano/"><span class="circle"></span><span>Nano</span><span class="crypto-symbol">NANO</span></a></td><td><span>$<!-- -->5.05</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/loopring/"><span class="circle"></span><span>Loopring</span><span class="crypto-symbol">LRC</span></a></td><td><span>$<!-- -->0.53</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/omg/"><span class="circle"></span><span>OMG Network</span><span class="crypto-symbol">OMG</span></a></td><td><span>$<!-- -->4.59</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/decentraland/"><span class="circle"></span><span>Decentraland</span><span class="crypto-symbol">MANA</span></a></td><td><span>$<!-- -->0.40</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/chiliz/"><span class="circle"></span><span>Chiliz</span><span class="crypto-symbol">CHZ</span></a></td><td><span>$<!-- -->0.11</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/qtum/"><span class="circle"></span><span>Qtum</span><span class="crypto-symbol">QTUM</span></a></td><td><span>$<!-- -->5.59</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/1inch/"><span class="circle"></span><span>1inch</span><span class="crypto-symbol">1INCH</span></a></td><td><span>$<!-- -->3.75</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/reserve-rights/"><span class="circle"></span><span>Reserve Rights</span><span class="crypto-symbol">RSR</span></a></td><td><span>$<!-- -->0.06</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/energy-web-token/"><span class="circle"></span><span>Energy Web Token</span><span class="crypto-symbol">EWT</span></a></td><td><span>$<!-- -->16.16</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/curve-dao-token/"><span class="circle"></span><span>Curve DAO Token</span><span class="crypto-symbol">CRV</span></a></td><td><span>$<!-- -->2.03</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/bitcoin-gold/"><span class="circle"></span><span>Bitcoin Gold</span><span class="crypto-symbol">BTG</span></a></td><td><span>$<!-- -->27.47</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/siacoin/"><span class="circle"></span><span>Siacoin</span><span class="crypto-symbol">SC</span></a></td><td><span>$<!-- -->0.01</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/arweave/"><span class="circle"></span><span>Arweave</span><span class="crypto-symbol">AR</span></a></td><td><span>$<!-- -->14.33</span></td><td><span></span></td></tr><tr class="sc-14kwl6f-0 fletOv"><td><span></span></td><td><span></span></td><td><a class="cmc-link" href="/currencies/horizen/"><span class="circle"></span><span>Horizen</span><span class="crypto-symbol">ZEN</span></a></td><td><span>$<!-- -->43.48</span></td><td><span></span></td></tr></tbody></table></div><div class="sc-8ccaqg-2 jbqscO"><div class="sc-1pue38x-0 mvtIA"><ul class="pagination"><li class="previous disabled"><a aria-disabled="true" aria-label="Previous page" class="chevron" role="button" tabindex="0"><svg class="sc-AxhCb dqoXIW" fill="none" height="14" viewbox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M15 6L9 12L15 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></a></li><li class="page active"><a aria-current="page" aria-label="Page 1 is your current page" role="button" tabindex="0">1</a></li><li class="page"><a aria-label="Page 2" href="/?page=2" role="button" tabindex="0">2</a></li><li class="page"><a aria-label="Page 3" href="/?page=3" role="button" tabindex="0">3</a></li><li class="page"><a aria-label="Page 4" href="/?page=4" role="button" tabindex="0">4</a></li><li class="break"><a role="button" tabindex="0">...</a></li><li class="page"><a aria-label="Page 43" href="/?page=43" role="button" tabindex="0">43</a></li><li class="next"><a aria-disabled="false" aria-label="Next page" class="chevron" href="/?page=2" role="button" tabindex="0"><svg class="sc-AxhCb dqoXIW" fill="none" height="14" viewbox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M9 6L15 12L9 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></a></li></ul></div></div><div class="sc-AxhCb sc-8ccaqg-0 kqmqqA"><p class="sc-AxhUy kVvvpJ" color="text" font-size="1">Showing 1 - 100 out of 4245</p><div class="sc-8ccaqg-3 locCiP"><div class="sc-1pue38x-0 mvtIA"><ul class="pagination"><li class="previous disabled"><a aria-disabled="true" aria-label="Previous page" class="chevron" role="button" tabindex="0"><svg class="sc-AxhCb dqoXIW" fill="none" height="14" viewbox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M15 6L9 12L15 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></a></li><li class="page active"><a aria-current="page" aria-label="Page 1 is your current page" role="button" tabindex="0">1</a></li><li class="page"><a aria-label="Page 2" href="/?page=2" role="button" tabindex="0">2</a></li><li class="page"><a aria-label="Page 3" href="/?page=3" role="button" tabindex="0">3</a></li><li class="page"><a aria-label="Page 4" href="/?page=4" role="button" tabindex="0">4</a></li><li class="page"><a aria-label="Page 5" href="/?page=5" role="button" tabindex="0">5</a></li><li class="page"><a aria-label="Page 6" href="/?page=6" role="button" tabindex="0">6</a></li><li class="break"><a role="button" tabindex="0">...</a></li><li class="page"><a aria-label="Page 43" href="/?page=43" role="button" tabindex="0">43</a></li><li class="next"><a aria-disabled="false" aria-label="Next page" class="chevron" href="/?page=2" role="button" tabindex="0"><svg class="sc-AxhCb dqoXIW" fill="none" height="14" viewbox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M9 6L15 12L9 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></a></li></ul></div></div><div class="sc-AxhCb sc-8ccaqg-1 kCmxUQ"><p class="sc-AxhUy loaKBT" color="text2" font-size="1">Show rows</p><div class="sc-AxhCb sc-fzpdbB jPpwSF">100<svg class="sc-AxhCb dqoXIW" fill="none" height="14" viewbox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"></path></svg></div></div></div><div class="sc-1u9taii-0 bNiDlV"><div class="seo-text__title"><div>Find out how we work by clicking here. </div><span id="drop-anchor">Read More</span></div><div class="seo-text__content" style="display:none"><div class="seo-text-translations"><h2>Today’s Cryptocurrency Prices, Charts and Data</h2> <p> Welcome to CoinMarketCap.com! This site was founded in May 2013 by Brandon Chez to provide up-to-date cryptocurrency prices, charts and data about the emerging cryptocurrency markets. Since then, the world of blockchain and cryptocurrency has grown exponentially and we are very proud to have grown with it. We take our data very seriously and we do not change our data to fit any narrative: we stand for accurately, timely and unbiased information. </p> <h2>All Your Crypto Market Data Needs in One Place</h2> <p> Here at CoinMarketCap, we work very hard to ensure that all the relevant and up-to-date information about cryptocurrencies, coins and tokens can be located in one easily discoverable place. From the very first day, the goal was for the site to be the number one location online for crypto market data, and we work hard to empower our users with our unbiased and accurate information. </p> <h3>We Provide Live and Historic Crypto Charts for Free</h3> <p> Each of our coin data pages has a graph that shows both the current and historic price information for the coin or token. Normally, the graph starts at the launch of the asset, but it is possible to select specific to and from dates to customize the chart to your own needs. These charts and their information are free to visitors of our website. </p> <h3>How Do We Calculate Our Cryptocurrency Prices?</h3> <p> We receive updated cryptocurrency prices directly from many exchanges based on their pairs. We then convert the number to USD. A full explanation can be found <a href="https://support.coinmarketcap.com/hc/en-us/articles/360043395752-Price-Market-Pair-Cryptoasset-" target="‘_blanket’"> here</a>. </p> <p> Related Links <br/> New to crypto? <a href="https://coinmarketcap.com/how-to-buy-bitcoin/" target="‘_blanket’"> Learn how to buy bitcoin today</a>. <br/> Ready to learn more? Visit our <a href="https://coinmarketcap.com/alexandria/glossary" target="‘_blank’"> crypto glossary </a> and <a href="https://coinmarketcap.com/alexandria/" target="_blank">Learning hub</a>. <br/> Want to look up a transaction? <a href="https://blockchain.coinmarketcap.com/" target="_blank"> Visit our blockchain explorer.</a> </p> <h3> How Do We Calculate Our Crypto Valuations?</h3> <p> We calculate our valuations based on the total circulating supply of an asset multiplied by the currency reference price. The topic is explained in more detail <a href="https://support.coinmarketcap.com/hc/en-us/articles/360043836811-Market-Capitalization-Cryptoasset-Aggregate-" target="_blank"> here</a>. </p> <h3>How Do We Calculate the Cryptocurrency Market Cap?</h3> <p> We calculate the total cryptocurrency market capitalization as the sum of all cryptocurrencies listed on the site. </p> <h2>Does CoinMarketCap.com List All Cryptocurrencies?</h2> <p> No, we do not list all cryptocurrencies at CoinMarketCap. As a company and team, we are very aware that not all coins and projects have good intentions. While we cannot guarantee to exclude them all, we have a vetting process that each coin goes through before it is listed on the site. If we suspect that a coin or project is a scam, it does not get listed. </p> <h3>How Big Is the Global Coin Market?</h3> <p> At the time of writing, we estimate that there are around 8,000 coins, tokens and projects in the global coin market. As mentioned above, we have a <a href="https://support.coinmarketcap.com/hc/en-us/articles/360043659351-Listings-Criteria" target="_blank">due diligence process</a> that we apply to new coins before they are listed. This process controls how many of the cryptocurrencies from the global market are represented on our site. </p> <h3> What Is an Altcoin?</h3> <p> The very first cryptocurrency was <a href="https://coinmarketcap.com/currencies/bitcoin/" target="_blank"> Bitcoin</a>. Since it is open source, it is possible for other people to use the majority of the code, make a few changes and then launch their own separate currency. Many people have done exactly this. Some of these coins are very similar to Bitcoin, with just one or two amended features (such as <a href="https://coinmarketcap.com/currencies/litecoin/" target="_blank">Litecoin</a>), while others are very different, with varying models of security, issuance and governance. However, they all share the same moniker — every coin issued after Bitcoin is considered to be an altcoin. </p> <h3> What Is an ICO?</h3> <p> ICO stands for initial coin offering. Many of the smaller projects in the crypto space — and a few of the largest ones — raised money from private investors around the world in the crypto equivalent of a crowdfunding campaign. Investors would send funds — usually in the form of Bitcoin — to the project and receive coin or tokens in return.<br/> Most ICOs happened in 2017 and early 2018 and used <a href="https://coinmarketcap.com/currencies/ethereum/" target="_blank">Ethereum</a> as a platform of operation via the ERC-20 standard. In 2018, the United States Securities and Exchange Commission (SEC) clarified their rules relating to fundraising for assets, which made it much harder for new cryptocurrency projects to issue their own tokens in this way. Since the appearance of the SEC guidance and the organization’s heightened interest in regulating ICOs for U.S. citizens, the number of ICOs has been reduced substantially. </p> <h3> What Is a Stablecoin?</h3> <p> Price volatility has long been one of the features of the cryptocurrency market. When asset prices move quickly in either direction and the market itself is relatively thin, it can sometimes be difficult to conduct transactions as might be needed. To overcome this problem, a new type of cryptocurrency tied in value to existing currencies — ranging from the U.S. dollar, other fiats or even other cryptocurrencies — arose. These new cryptocurrency are known as stablecoins, and they can be used for a multitude of purposes due to their stability. </p> <h2>Which Is the Best Cryptocurrency to Invest in? </h2> <p> CoinMarketCap does not offer financial or investment advice about which cryptocurrency, token or asset does or does not make a good investment, nor do we offer advice about the timing of purchases or sales. We are strictly a data company. <br/> Please remember that the prices, yields and values of financial assets change. This means that any capital you may invest is at risk. We recommend seeking the advice of a professional investment advisor for guidance related to your personal circumstances. </p> <h3>If You Are Investing in Cryptocurrency — CoinMarketCap.com Is for You</h3> <p> The data at CoinMarketCap updates throughout the day, which means that it is possible to check in on the value of your investments and assets at any time and from anywhere in the world. We look forward to seeing you regularly! </p></div><span></span></div></div></div></div></div><footer class="i8b499-0 fPKtoJ"><div class="i8b499-1 leywDA"><div class="i8b499-2 kFXOmn"><div class="sc-7i7lua-0 lohPt cmc-logo"></div></div><div class="i8b499-3 jrTZTi"><div class="footer-row"><div class="i8b499-6 gRuTnc"><span>Products</span><ul><li><a href="https://blockchain.coinmarketcap.com/?utm_source=coinmarketcap&amp;utm_content=footer" rel="noopener" target="_blank">Blockchain Explorer</a></li><li><a href="https://coinmarketcap.com/api/" rel="noopener" target="_blank">Crypto API</a></li><li><a href="https://coinmarketcap.com/indices/" rel="noopener" target="_blank">Crypto Indices</a></li><li><a href="https://interest.coinmarketcap.com?utm_source=coinmarketcap&amp;utm_content=footer" rel="noopener" target="_blank">Interest</a></li><li><a href="https://jobs.coinmarketcap.com/" target="_blank">Jobs Board</a></li><li><a class="cmc-link" href="/sitemap/cryptocurrencies/" rel="noopener" target="_blank">Sitemap</a></li></ul></div><div class="i8b499-6 gRuTnc"><span>Company</span><ul><li><a class="cmc-link" href="/about/" target="_blank">About us</a></li><li><a class="cmc-link" href="/terms/" target="_blank">Terms of use</a></li><li><a class="cmc-link" href="/privacy/" target="_blank">Privacy Policy</a></li><li><a class="cmc-link" href="/disclaimer/" target="_blank">Disclaimer</a></li><li><a class="cmc-link" href="/methodology/" target="_blank">Methodology</a></li><li><a href="https://jobs.coinmarketcap.com/employers/293118-coinmarketcap?utm_source=coinmarketcap&amp;utm_content=footer" rel="noopener" target="_blank">Careers</a><span class="tips">We’re hiring!</span></li></ul></div></div><div class="footer-row"><div class="i8b499-6 gRuTnc"><span>Support</span><ul><li><a href="/request/" rel="noopener" target="_blank">Request Form</a></li><li><a href="/request" target="_blank">Contact Support</a></li><li><a class="cmc-link" href="/faq/" target="_blank">FAQ</a></li><li><a href="https://coinmarketcap.com/alexandria/glossary" rel="noopener" target="_blank">Glossary</a></li></ul></div><div class="i8b499-6 gRuTnc"><span>Socials</span><ul><li><a href="https://www.facebook.com/CoinMarketCap" rel="noopener" target="_blank">Facebook</a></li><li><a href="https://twitter.com/CoinMarketCap" rel="noopener" target="_blank">Twitter</a></li><li><a href="https://t.me/CoinMarketCap" rel="noopener" target="_blank">Telegram</a></li><li><a href="https://www.instagram.com/coinmarketcap/" rel="noopener" target="_blank">Instagram</a></li><li><a href="https://t.me/CoinMarketCapBot" rel="noopener" target="_blank">Interactive Chat</a></li></ul></div></div></div><div class="footer-meta"><div class="i8b499-4 dzUHFA">© <!-- -->2021<!-- --> CoinMarketCap. All rights reserved</div><div class="i8b499-5 hSxkho"><a class="cmc-app-store-badge cmc-link" href="https://itunes.apple.com/app/coinmarketcap/id1282107098?ls=1&amp;mt=8" target="_blank"><div class="sc-17dy621-0 gOBYxd cmc-app-store-badge cmc-app-store-badge--ios"></div></a><a class="cmc-app-store-badge cmc-link" href="https://play.google.com/store/apps/details?id=com.coinmarketcap.android&amp;hl=en_US" target="_blank"><div class="sc-17dy621-0 gOBYxd cmc-app-store-badge cmc-app-store-badge--android"></div></a></div></div></div></footer><div class="sc-1ojz83d-2 hOKkUo"><div class="sc-AxhCb bzAUaH" style="text-align:right"></div></div></div><span></span></div><script id="__NEXT_DATA__" type="application/json">{"props":{"isServer":true,"initialState":{"app":{"locale":"en-US","theme":"DAY","lang":"en","currency":{"global":"usd","table":"","isUnconverted":false},"bottomBannerHeights":{},"browser":{},"window":{"width":0,"height":0,"isNarrowLayout":false},"modal":{"instance":0,"data":{}},"message":""},"calendarEvent":{"listingLatest":{"data":[]},"calendarEventsById":{},"current":{}},"converter":{"isConverting":false,"values":{"from":"","to":"","amount":"","fromLabel":"","toLabel":""},"options":[],"conversions":{},"errors":{}},"cryptocurrency":{"listingLatest":{"page":1,"sort":"rank","sortDirection":"asc","data":[{"id":1,"name":"Bitcoin","symbol":"BTC","slug":"bitcoin","tags":["mineable","pow","sha-256","store-of-value","state-channels","coinbase-ventures-portfolio","three-arrows-capital-portfolio","polychain-capital-portfolio"],"cmcRank":1,"marketPairCount":9800,"circulatingSupply":18644881,"totalSupply":18644881,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:10:02.000Z","dateAdded":"2013-04-28T00:00:00.000Z","quotes":[{"name":"btc","price":1,"volume24h":1077191.70957372,"volume7d":157755232.29966283,"volume30d":675398080.8486696,"marketCap":18644881,"percentChange1h":0,"percentChange24h":0,"percentChange7d":0,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":31.37681292,"volume24h":33798842.75129959,"volume7d":4949856411.168495,"volume30d":21191839229.961506,"marketCap":585016943.0704893,"percentChange1h":-0.955722,"percentChange24h":-2.053258,"percentChange7d":-1.404346,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":47701.175359127046,"volume24h":51383310633.77399,"volume7d":7525109999746.039,"volume30d":32217282291780.254,"marketCap":889382738131.056,"percentChange1h":-0.83902094,"percentChange24h":-5.98127235,"percentChange7d":-0.29810243,"lastUpdated":"2021-03-05T00:10:02.000Z"}],"rank":1,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":1,"volume24h":1077191.70957372,"volume7d":157755232.29966283,"volume30d":675398080.8486696,"marketCap":18644881,"percentChange1h":0,"percentChange24h":0,"percentChange7d":0,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":31.37681292,"volume24h":33798842.75129959,"volume7d":4949856411.168495,"volume30d":21191839229.961506,"marketCap":585016943.0704893,"percentChange1h":-0.955722,"percentChange24h":-2.053258,"percentChange7d":-1.404346,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":47701.175359127046,"volume24h":51383310633.77399,"volume7d":7525109999746.039,"volume30d":32217282291780.254,"marketCap":889382738131.056,"percentChange1h":-0.83902094,"percentChange24h":-5.98127235,"percentChange7d":-0.29810243,"lastUpdated":"2021-03-05T00:10:02.000Z"}}},{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","tags":["mineable","pow","smart-contracts","coinbase-ventures-portfolio","three-arrows-capital-portfolio","polychain-capital-portfolio"],"cmcRank":2,"marketPairCount":6115,"circulatingSupply":114916285.624,"totalSupply":114916285.624,"lastUpdated":"2021-03-05T00:10:02.000Z","dateAdded":"2015-08-07T00:00:00.000Z","quotes":[{"name":"btc","price":0.03187067,"volume24h":472967.79431489,"volume7d":2007092.28692298,"volume30d":87456011.42652221,"marketCap":3662458.83268944,"percentChange1h":0.964944,"percentChange24h":2.0963,"percentChange7d":1.424349,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":1,"volume24h":14840221.99985566,"volume7d":62976159.20187619,"volume30d":2744090909.3429885,"marketCap":114916285.624,"percentChange1h":0,"percentChange24h":0,"percentChange7d":0,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1520.2683420809801,"volume24h":22561119695.834255,"volume7d":95740661140.46419,"volume30d":4171754537266.3545,"marketCap":174703591023.70285,"percentChange1h":0.11782683,"percentChange24h":-4.01035725,"percentChange7d":1.12200055,"lastUpdated":"2021-03-05T00:10:02.000Z"}],"rank":2,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.03187067,"volume24h":472967.79431489,"volume7d":2007092.28692298,"volume30d":87456011.42652221,"marketCap":3662458.83268944,"percentChange1h":0.964944,"percentChange24h":2.0963,"percentChange7d":1.424349,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":1,"volume24h":14840221.99985566,"volume7d":62976159.20187619,"volume30d":2744090909.3429885,"marketCap":114916285.624,"percentChange1h":0,"percentChange24h":0,"percentChange7d":0,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1520.2683420809801,"volume24h":22561119695.834255,"volume7d":95740661140.46419,"volume30d":4171754537266.3545,"marketCap":174703591023.70285,"percentChange1h":0.11782683,"percentChange24h":-4.01035725,"percentChange7d":1.12200055,"lastUpdated":"2021-03-05T00:10:02.000Z"}}},{"id":825,"name":"Tether","symbol":"USDT","slug":"tether","tags":["store-of-value","payments","stablecoin","stablecoin-asset-backed"],"cmcRank":3,"marketPairCount":11083,"circulatingSupply":36263902053.51945,"totalSupply":37608167440.84519,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2015-02-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002096,"volume24h":2132695.45464964,"volume7d":14502914.20118372,"volume30d":108419481.71336955,"marketCap":760239.42551255,"percentChange1h":0.869731,"percentChange24h":6.314882,"percentChange7d":0.305743,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00065779,"volume24h":66917186.29791509,"volume7d":455055225.6992195,"volume30d":3401857794.70742,"marketCap":23853890.22944233,"percentChange1h":-0.094303,"percentChange24h":4.131963,"percentChange7d":-1.102896,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.00001136385643,"volume24h":101732079869.85545,"volume7d":691806053529.0387,"volume30d":5171736709555.108,"marketCap":36264314151.295975,"percentChange1h":0.02341322,"percentChange24h":-0.04409976,"percentChange7d":0.00673004,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xdac17f958d2ee523a2206206994597c13d831ec7"},"rank":3,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00002096,"volume24h":2132695.45464964,"volume7d":14502914.20118372,"volume30d":108419481.71336955,"marketCap":760239.42551255,"percentChange1h":0.869731,"percentChange24h":6.314882,"percentChange7d":0.305743,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00065779,"volume24h":66917186.29791509,"volume7d":455055225.6992195,"volume30d":3401857794.70742,"marketCap":23853890.22944233,"percentChange1h":-0.094303,"percentChange24h":4.131963,"percentChange7d":-1.102896,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.00001136385643,"volume24h":101732079869.85545,"volume7d":691806053529.0387,"volume30d":5171736709555.108,"marketCap":36264314151.295975,"percentChange1h":0.02341322,"percentChange24h":-0.04409976,"percentChange7d":0.00673004,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":2010,"name":"Cardano","symbol":"ADA","slug":"cardano","tags":["mineable","dpos","pos","platform","research","smart-contracts","staking","binance-chain"],"cmcRank":4,"marketPairCount":238,"circulatingSupply":31948309440.747814,"totalSupply":45000000000,"maxSupply":45000000000,"lastUpdated":"2021-03-05T00:10:12.000Z","dateAdded":"2017-10-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002299,"volume24h":149249.56853711,"volume7d":814381.81457683,"volume30d":7404711.07302538,"marketCap":734634.96272058,"percentChange1h":1.089767,"percentChange24h":-4.674518,"percentChange7d":0.554202,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00072149,"volume24h":4682975.7905222,"volume7d":25552705.84220609,"volume30d":232336234.0720497,"marketCap":23050503.79047712,"percentChange1h":0.12363,"percentChange24h":-6.631796,"percentChange7d":-0.857927,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.09686402176214,"volume24h":7119379841.062559,"volume7d":38846969746.413635,"volume30d":353213421378.0535,"marketCap":35042951181.67999,"percentChange1h":0.2416025,"percentChange24h":-10.37619431,"percentChange7d":0.25444761,"lastUpdated":"2021-03-05T00:10:12.000Z"}],"rank":4,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00002299,"volume24h":149249.56853711,"volume7d":814381.81457683,"volume30d":7404711.07302538,"marketCap":734634.96272058,"percentChange1h":1.089767,"percentChange24h":-4.674518,"percentChange7d":0.554202,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00072149,"volume24h":4682975.7905222,"volume7d":25552705.84220609,"volume30d":232336234.0720497,"marketCap":23050503.79047712,"percentChange1h":0.12363,"percentChange24h":-6.631796,"percentChange7d":-0.857927,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.09686402176214,"volume24h":7119379841.062559,"volume7d":38846969746.413635,"volume30d":353213421378.0535,"marketCap":35042951181.67999,"percentChange1h":0.2416025,"percentChange24h":-10.37619431,"percentChange7d":0.25444761,"lastUpdated":"2021-03-05T00:10:12.000Z"}}},{"id":1839,"name":"Binance Coin","symbol":"BNB","slug":"binance-coin","tags":["marketplace","payments"],"cmcRank":5,"marketPairCount":477,"circulatingSupply":154532785,"totalSupply":170532785,"maxSupply":170532785,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2017-07-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00475387,"volume24h":116299.55427928,"volume7d":946316.16404403,"volume30d":2859307.03853288,"marketCap":734628.76280751,"percentChange1h":0.710552,"percentChange24h":-0.788859,"percentChange7d":-5.561568,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.14916129,"volume24h":3649109.35741157,"volume7d":29692385.24328647,"volume30d":89715942.03161915,"marketCap":23050309.25696482,"percentChange1h":-0.251961,"percentChange24h":-2.825919,"percentChange7d":-6.887811,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":226.7651840904814,"volume24h":5547625432.8642845,"volume7d":45140393286.240875,"volume30d":136392306450.64297,"marketCap":35042655438.53978,"percentChange1h":-0.13443144,"percentChange24h":-6.72294692,"percentChange7d":-5.8430906,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"rank":5,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00475387,"volume24h":116299.55427928,"volume7d":946316.16404403,"volume30d":2859307.03853288,"marketCap":734628.76280751,"percentChange1h":0.710552,"percentChange24h":-0.788859,"percentChange7d":-5.561568,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.14916129,"volume24h":3649109.35741157,"volume7d":29692385.24328647,"volume30d":89715942.03161915,"marketCap":23050309.25696482,"percentChange1h":-0.251961,"percentChange24h":-2.825919,"percentChange7d":-6.887811,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":226.7651840904814,"volume24h":5547625432.8642845,"volume7d":45140393286.240875,"volume30d":136392306450.64297,"marketCap":35042655438.53978,"percentChange1h":-0.13443144,"percentChange24h":-6.72294692,"percentChange7d":-5.8430906,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":6636,"name":"Polkadot","symbol":"DOT","slug":"polkadot-new","tags":["substrate","polkadot","binance-chain","dot-ecosystem","three-arrows-capital-portfolio","polychain-capital-portfolio"],"cmcRank":6,"marketPairCount":153,"circulatingSupply":915164828.9341136,"totalSupply":1050924478.239933,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2020-08-19T00:00:00.000Z","quotes":[{"name":"btc","price":0.00073194,"volume24h":58152.77056683,"volume7d":486160.30988131,"volume30d":2605411.51414325,"marketCap":669846.4649281,"percentChange1h":1.058392,"percentChange24h":-0.310226,"percentChange7d":9.61918,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.02296597,"volume24h":1824648.60291065,"volume7d":15254161.09274007,"volume30d":81749509.66137786,"marketCap":21017647.21581278,"percentChange1h":0.092555,"percentChange24h":-2.357115,"percentChange7d":8.079747,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":34.91443582293415,"volume24h":2773955506.427355,"volume7d":23190418194.296143,"volume30d":124281191518.83598,"marketCap":31952463687.22662,"percentChange1h":0.2104913,"percentChange24h":-6.27294264,"percentChange7d":9.29240275,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":6,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00073194,"volume24h":58152.77056683,"volume7d":486160.30988131,"volume30d":2605411.51414325,"marketCap":669846.4649281,"percentChange1h":1.058392,"percentChange24h":-0.310226,"percentChange7d":9.61918,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.02296597,"volume24h":1824648.60291065,"volume7d":15254161.09274007,"volume30d":81749509.66137786,"marketCap":21017647.21581278,"percentChange1h":0.092555,"percentChange24h":-2.357115,"percentChange7d":8.079747,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":34.91443582293415,"volume24h":2773955506.427355,"volume7d":23190418194.296143,"volume30d":124281191518.83598,"marketCap":31952463687.22662,"percentChange1h":0.2104913,"percentChange24h":-6.27294264,"percentChange7d":9.29240275,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":52,"name":"XRP","symbol":"XRP","slug":"xrp","tags":["medium-of-exchange","enterprise-solutions","binance-chain"],"cmcRank":7,"marketPairCount":674,"circulatingSupply":45404028640,"totalSupply":99990831162,"maxSupply":100000000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2013-08-04T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000998,"volume24h":125779.9071505,"volume7d":1553285.1362424,"volume30d":4565285.00309402,"marketCap":453075.80610541,"percentChange1h":1.980889,"percentChange24h":12.394222,"percentChange7d":6.477502,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0003131,"volume24h":3946572.61587645,"volume7d":48737137.13277948,"volume30d":143244093.47292766,"marketCap":14216074.80718076,"percentChange1h":1.006235,"percentChange24h":10.086479,"percentChange7d":4.982189,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.47599847690546,"volume24h":5999849407.640685,"volume7d":74093526666.62404,"volume30d":217769460496.98068,"marketCap":21612248478.011883,"percentChange1h":1.12524848,"percentChange24h":5.67161804,"percentChange7d":6.16008968,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":7,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00000998,"volume24h":125779.9071505,"volume7d":1553285.1362424,"volume30d":4565285.00309402,"marketCap":453075.80610541,"percentChange1h":1.980889,"percentChange24h":12.394222,"percentChange7d":6.477502,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0003131,"volume24h":3946572.61587645,"volume7d":48737137.13277948,"volume30d":143244093.47292766,"marketCap":14216074.80718076,"percentChange1h":1.006235,"percentChange24h":10.086479,"percentChange7d":4.982189,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.47599847690546,"volume24h":5999849407.640685,"volume7d":74093526666.62404,"volume30d":217769460496.98068,"marketCap":21612248478.011883,"percentChange1h":1.12524848,"percentChange24h":5.67161804,"percentChange7d":6.16008968,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":2,"name":"Litecoin","symbol":"LTC","slug":"litecoin","tags":["mineable","pow","scrypt","medium-of-exchange","binance-chain"],"cmcRank":8,"marketPairCount":757,"circulatingSupply":66595487.80105277,"totalSupply":66595487.80105277,"maxSupply":84000000,"lastUpdated":"2021-03-05T00:11:02.000Z","dateAdded":"2013-04-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00373807,"volume24h":113585.36904899,"volume7d":1114247.26984204,"volume30d":285068430.2045084,"marketCap":248938.70895912,"percentChange1h":0.095512,"percentChange24h":0.46149,"percentChange7d":-3.029373,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.11728878,"volume24h":3563946.87520801,"volume7d":34961528.13351966,"volume30d":8944538804.1975,"marketCap":7810903.29979457,"percentChange1h":-0.861122,"percentChange24h":-1.601244,"percentChange7d":-4.391176,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":178.31041414108893,"volume24h":5418155607.237168,"volume7d":53150904412.163475,"volume30d":13598099178536.326,"marketCap":11874669009.733555,"percentChange1h":-0.74431035,"percentChange24h":-5.5473854,"percentChange7d":-3.31844449,"lastUpdated":"2021-03-05T00:11:02.000Z"}],"rank":8,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00373807,"volume24h":113585.36904899,"volume7d":1114247.26984204,"volume30d":285068430.2045084,"marketCap":248938.70895912,"percentChange1h":0.095512,"percentChange24h":0.46149,"percentChange7d":-3.029373,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.11728878,"volume24h":3563946.87520801,"volume7d":34961528.13351966,"volume30d":8944538804.1975,"marketCap":7810903.29979457,"percentChange1h":-0.861122,"percentChange24h":-1.601244,"percentChange7d":-4.391176,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":178.31041414108893,"volume24h":5418155607.237168,"volume7d":53150904412.163475,"volume30d":13598099178536.326,"marketCap":11874669009.733555,"percentChange1h":-0.74431035,"percentChange24h":-5.5473854,"percentChange7d":-3.31844449,"lastUpdated":"2021-03-05T00:11:02.000Z"}}},{"id":1975,"name":"Chainlink","symbol":"LINK","slug":"chainlink","tags":["platform","defi","oracles","smart-contracts","substrate","polkadot","dot-ecosystem"],"cmcRank":9,"marketPairCount":479,"circulatingSupply":410009556.43444455,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-09-20T00:00:00.000Z","quotes":[{"name":"btc","price":0.00057101,"volume24h":39565.76228844,"volume7d":22286189.41343122,"volume30d":95283010.86698826,"marketCap":234119.04370085,"percentChange1h":-0.123457,"percentChange24h":-3.897723,"percentChange7d":7.151107,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01791643,"volume24h":1241447.52139955,"volume7d":699269595.9462243,"volume30d":2989677206.51892,"marketCap":7345909.43543484,"percentChange1h":-1.077999,"percentChange24h":-5.870951,"percentChange7d":5.646334,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":27.23778844474601,"volume24h":1887333365.1386366,"volume7d":1063077429296.8035,"volume30d":4545111610111.814,"marketCap":11167753558.48555,"percentChange1h":-0.96144247,"percentChange24h":-9.64586183,"percentChange7d":6.83168736,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x514910771af9ca656af840dff83e8264ecf986ca"},"rank":9,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.00057101,"volume24h":39565.76228844,"volume7d":22286189.41343122,"volume30d":95283010.86698826,"marketCap":234119.04370085,"percentChange1h":-0.123457,"percentChange24h":-3.897723,"percentChange7d":7.151107,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01791643,"volume24h":1241447.52139955,"volume7d":699269595.9462243,"volume30d":2989677206.51892,"marketCap":7345909.43543484,"percentChange1h":-1.077999,"percentChange24h":-5.870951,"percentChange7d":5.646334,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":27.23778844474601,"volume24h":1887333365.1386366,"volume7d":1063077429296.8035,"volume30d":4545111610111.814,"marketCap":11167753558.48555,"percentChange1h":-0.96144247,"percentChange24h":-9.64586183,"percentChange7d":6.83168736,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":1831,"name":"Bitcoin Cash","symbol":"BCH","slug":"bitcoin-cash","tags":["mineable","marketplace","enterprise-solutions","binance-chain"],"cmcRank":10,"marketPairCount":587,"circulatingSupply":18670793.75,"totalSupply":18670793.75,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2017-07-23T00:00:00.000Z","quotes":[{"name":"btc","price":0.01050247,"volume24h":76669.62806598,"volume7d":678795.23972599,"volume30d":4098884.02021882,"marketCap":196089.49661291,"percentChange1h":0.592727,"percentChange24h":1.098705,"percentChange7d":-0.846606,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.32953411,"volume24h":2405648.57654564,"volume7d":21298431.24851809,"volume30d":128609917.08710241,"marketCap":6152663.45098762,"percentChange1h":-0.36866,"percentChange24h":-0.977113,"percentChange7d":-2.239063,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":500.98027910651587,"volume24h":3657231373.094508,"volume7d":32379330763.110336,"volume30d":195521585425.18152,"marketCap":9353699464.015192,"percentChange1h":-0.25126699,"percentChange24h":-4.94828446,"percentChange7d":-1.14218388,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"rank":10,"hasFilters":false,"noLazyLoad":true,"quote":{"btc":{"name":"btc","price":0.01050247,"volume24h":76669.62806598,"volume7d":678795.23972599,"volume30d":4098884.02021882,"marketCap":196089.49661291,"percentChange1h":0.592727,"percentChange24h":1.098705,"percentChange7d":-0.846606,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.32953411,"volume24h":2405648.57654564,"volume7d":21298431.24851809,"volume30d":128609917.08710241,"marketCap":6152663.45098762,"percentChange1h":-0.36866,"percentChange24h":-0.977113,"percentChange7d":-2.239063,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":500.98027910651587,"volume24h":3657231373.094508,"volume7d":32379330763.110336,"volume30d":195521585425.18152,"marketCap":9353699464.015192,"percentChange1h":-0.25126699,"percentChange24h":-4.94828446,"percentChange7d":-1.14218388,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":512,"name":"Stellar","symbol":"XLM","slug":"stellar","tags":["medium-of-exchange","enterprise-solutions","decentralized-exchange","smart-contracts"],"cmcRank":11,"marketPairCount":345,"circulatingSupply":22571070091.037815,"totalSupply":50001803465.79792,"maxSupply":50001806812,"lastUpdated":"2021-03-05T00:10:06.000Z","dateAdded":"2014-08-05T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000853,"volume24h":24210.17091832,"volume7d":199454.96898453,"volume30d":1280429.37155228,"marketCap":192501.26146193,"percentChange1h":0.738649,"percentChange24h":2.253251,"percentChange7d":4.54306,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0002676,"volume24h":759638.00368855,"volume7d":6258261.2479827,"volume30d":40175792.84969319,"marketCap":6040076.06793912,"percentChange1h":-0.224132,"percentChange24h":0.153728,"percentChange7d":3.074913,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.40682769548861,"volume24h":1154853608.4492922,"volume7d":9514236451.780298,"volume30d":61077985987.39196,"marketCap":9182536429.848804,"percentChange1h":-0.10656927,"percentChange24h":-3.86279363,"percentChange7d":4.23141514,"lastUpdated":"2021-03-05T00:10:06.000Z"}],"rank":11,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000853,"volume24h":24210.17091832,"volume7d":199454.96898453,"volume30d":1280429.37155228,"marketCap":192501.26146193,"percentChange1h":0.738649,"percentChange24h":2.253251,"percentChange7d":4.54306,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0002676,"volume24h":759638.00368855,"volume7d":6258261.2479827,"volume30d":40175792.84969319,"marketCap":6040076.06793912,"percentChange1h":-0.224132,"percentChange24h":0.153728,"percentChange7d":3.074913,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.40682769548861,"volume24h":1154853608.4492922,"volume7d":9514236451.780298,"volume30d":61077985987.39196,"marketCap":9182536429.848804,"percentChange1h":-0.10656927,"percentChange24h":-3.86279363,"percentChange7d":4.23141514,"lastUpdated":"2021-03-05T00:10:06.000Z"}}},{"id":3408,"name":"USD Coin","symbol":"USDC","slug":"usd-coin","tags":["medium-of-exchange","stablecoin","stablecoin-asset-backed"],"cmcRank":12,"marketPairCount":790,"circulatingSupply":8654680801.373087,"totalSupply":8820711775.68955,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2018-10-08T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002097,"volume24h":33989.13059838,"volume7d":289010.30865279,"volume30d":1014550.76477185,"marketCap":181468.66516885,"percentChange1h":0.84494,"percentChange24h":6.376446,"percentChange7d":0.304119,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0006579,"volume24h":1066470.59213135,"volume7d":9068222.38682635,"volume30d":31833369.54505938,"marketCap":5693908.35801875,"percentChange1h":-0.118857,"percentChange24h":4.192263,"percentChange7d":-1.104499,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.00018346350022,"volume24h":1621321478.9776556,"volume7d":13786131413.64212,"volume30d":48395263941.11859,"marketCap":8656268619.406195,"percentChange1h":-0.00116962,"percentChange24h":0.01378076,"percentChange7d":0.0051103,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"},"rank":12,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002097,"volume24h":33989.13059838,"volume7d":289010.30865279,"volume30d":1014550.76477185,"marketCap":181468.66516885,"percentChange1h":0.84494,"percentChange24h":6.376446,"percentChange7d":0.304119,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0006579,"volume24h":1066470.59213135,"volume7d":9068222.38682635,"volume30d":31833369.54505938,"marketCap":5693908.35801875,"percentChange1h":-0.118857,"percentChange24h":4.192263,"percentChange7d":-1.104499,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.00018346350022,"volume24h":1621321478.9776556,"volume7d":13786131413.64212,"volume30d":48395263941.11859,"marketCap":8656268619.406195,"percentChange1h":-0.00116962,"percentChange24h":0.01378076,"percentChange7d":0.0051103,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":7083,"name":"Uniswap","symbol":"UNI","slug":"uniswap","tags":["defi","dao","amm","coinbase-ventures-portfolio","three-arrows-capital-portfolio"],"cmcRank":13,"marketPairCount":206,"circulatingSupply":311765813.0653397,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2020-09-17T00:00:00.000Z","quotes":[{"name":"btc","price":0.00057574,"volume24h":37852.13445614,"volume7d":168676.30043742,"volume30d":550896.95256508,"marketCap":179495.00239714,"percentChange1h":-3.007511,"percentChange24h":14.827465,"percentChange7d":14.488695,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01806478,"volume24h":1187679.34148925,"volume7d":5292524.72302396,"volume30d":17285390.61935939,"marketCap":5631981.11046155,"percentChange1h":-3.934489,"percentChange24h":12.469761,"percentChange7d":12.880877,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":27.4633145348696,"volume24h":1805591303.4096966,"volume7d":8046057786.094238,"volume30d":26278432139.115627,"marketCap":8562122585.432782,"percentChange1h":-3.82129826,"percentChange24h":7.95932176,"percentChange7d":14.1474023,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x1f9840a85d5af5bf1d1762f925bdaddc4201f984"},"rank":13,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00057574,"volume24h":37852.13445614,"volume7d":168676.30043742,"volume30d":550896.95256508,"marketCap":179495.00239714,"percentChange1h":-3.007511,"percentChange24h":14.827465,"percentChange7d":14.488695,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01806478,"volume24h":1187679.34148925,"volume7d":5292524.72302396,"volume30d":17285390.61935939,"marketCap":5631981.11046155,"percentChange1h":-3.934489,"percentChange24h":12.469761,"percentChange7d":12.880877,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":27.4633145348696,"volume24h":1805591303.4096966,"volume7d":8046057786.094238,"volume30d":26278432139.115627,"marketCap":8562122585.432782,"percentChange1h":-3.82129826,"percentChange24h":7.95932176,"percentChange7d":14.1474023,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":74,"name":"Dogecoin","symbol":"DOGE","slug":"dogecoin","tags":["mineable","pow","scrypt","medium-of-exchange","memes","payments"],"cmcRank":14,"marketPairCount":310,"circulatingSupply":128619370523.89102,"totalSupply":128619370523.89102,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2013-12-15T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000103,"volume24h":24436.79817548,"volume7d":2055847.07603917,"volume30d":7857884.12367957,"marketCap":132999.59051235,"percentChange1h":-0.25209,"percentChange24h":3.648498,"percentChange7d":-3.149421,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00003245,"volume24h":766748.84473906,"volume7d":64505929.09897566,"volume30d":246555360.10324526,"marketCap":4173103.2700699,"percentChange1h":-1.205403,"percentChange24h":1.520327,"percentChange7d":-4.509539,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.04932567127238,"volume24h":1165663994.9839528,"volume7d":98066321885.69298,"volume30d":374830308535.3397,"marketCap":6344236789.72189,"percentChange1h":-1.08899569,"percentChange24h":-2.55100088,"percentChange7d":-3.43813467,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":14,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000103,"volume24h":24436.79817548,"volume7d":2055847.07603917,"volume30d":7857884.12367957,"marketCap":132999.59051235,"percentChange1h":-0.25209,"percentChange24h":3.648498,"percentChange7d":-3.149421,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00003245,"volume24h":766748.84473906,"volume7d":64505929.09897566,"volume30d":246555360.10324526,"marketCap":4173103.2700699,"percentChange1h":-1.205403,"percentChange24h":1.520327,"percentChange7d":-4.509539,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.04932567127238,"volume24h":1165663994.9839528,"volume7d":98066321885.69298,"volume30d":374830308535.3397,"marketCap":6344236789.72189,"percentChange1h":-1.08899569,"percentChange24h":-2.55100088,"percentChange7d":-3.43813467,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":873,"name":"NEM","symbol":"XEM","slug":"nem","tags":["poi","medium-of-exchange","payments","smart-contracts"],"cmcRank":15,"marketPairCount":104,"circulatingSupply":8999999999,"totalSupply":8999999999,"maxSupply":8999999999,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2015-04-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00001448,"volume24h":15375.9113314,"volume7d":67338.0476526,"volume30d":97018.85726199,"marketCap":130349.77213944,"percentChange1h":0.453954,"percentChange24h":-8.573223,"percentChange7d":36.953464,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00045444,"volume24h":482447.09333455,"volume7d":2112853.32365805,"volume30d":3044142.53411432,"marketCap":4089960.41470858,"percentChange1h":-0.506107,"percentChange24h":-10.45045,"percentChange7d":35.030163,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.69087081550408,"volume24h":733449042.725502,"volume7d":3212104019.417907,"volume30d":4627913523.396172,"marketCap":6217837338.845849,"percentChange1h":-0.38887613,"percentChange24h":-14.04170692,"percentChange7d":36.54520251,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":15,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00001448,"volume24h":15375.9113314,"volume7d":67338.0476526,"volume30d":97018.85726199,"marketCap":130349.77213944,"percentChange1h":0.453954,"percentChange24h":-8.573223,"percentChange7d":36.953464,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00045444,"volume24h":482447.09333455,"volume7d":2112853.32365805,"volume30d":3044142.53411432,"marketCap":4089960.41470858,"percentChange1h":-0.506107,"percentChange24h":-10.45045,"percentChange7d":35.030163,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.69087081550408,"volume24h":733449042.725502,"volume7d":3212104019.417907,"volume30d":4627913523.396172,"marketCap":6217837338.845849,"percentChange1h":-0.38887613,"percentChange24h":-14.04170692,"percentChange7d":36.54520251,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":3717,"name":"Wrapped Bitcoin","symbol":"WBTC","slug":"wrapped-bitcoin","tags":["medium-of-exchange","defi","stablecoin","stablecoin-asset-backed"],"cmcRank":16,"marketPairCount":115,"circulatingSupply":123770.08359608,"totalSupply":123770.08359608,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2019-01-30T00:00:00.000Z","quotes":[{"name":"btc","price":1.00514341,"volume24h":3344.580168,"volume7d":22720.55198877,"volume30d":123228.00107607,"marketCap":124406.68436791,"percentChange1h":0.609502,"percentChange24h":0.599702,"percentChange7d":0.584738,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":31.53819686,"volume24h":104942.26623035,"volume7d":712898.50921235,"volume30d":3866501.93638719,"marketCap":3903485.26152828,"percentChange1h":-0.352045,"percentChange24h":-1.46587,"percentChange7d":-0.82782,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":47946.52224884727,"volume24h":159540405.09623262,"volume7d":1083797034.6722612,"volume30d":5878120488.484257,"marketCap":5934345066.881136,"percentChange1h":-0.23463323,"percentChange24h":-5.41744001,"percentChange7d":0.28489292,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599"},"rank":16,"hasFilters":false,"quote":{"btc":{"name":"btc","price":1.00514341,"volume24h":3344.580168,"volume7d":22720.55198877,"volume30d":123228.00107607,"marketCap":124406.68436791,"percentChange1h":0.609502,"percentChange24h":0.599702,"percentChange7d":0.584738,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":31.53819686,"volume24h":104942.26623035,"volume7d":712898.50921235,"volume30d":3866501.93638719,"marketCap":3903485.26152828,"percentChange1h":-0.352045,"percentChange24h":-1.46587,"percentChange7d":-0.82782,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":47946.52224884727,"volume24h":159540405.09623262,"volume7d":1083797034.6722612,"volume30d":5878120488.484257,"marketCap":5934345066.881136,"percentChange1h":-0.23463323,"percentChange24h":-5.41744001,"percentChange7d":0.28489292,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":7278,"name":"Aave","symbol":"AAVE","slug":"aave","tags":["defi","dao","yield-farming","three-arrows-capital-portfolio"],"cmcRank":17,"marketPairCount":167,"circulatingSupply":12424468.28806046,"totalSupply":16000000,"maxSupply":16000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2020-10-02T00:00:00.000Z","quotes":[{"name":"btc","price":0.00772761,"volume24h":8130.0562849,"volume7d":82845.96376167,"volume30d":424497.13411175,"marketCap":96011.41403638,"percentChange1h":0.81317,"percentChange24h":-0.715383,"percentChange7d":7.078887,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.24246769,"volume24h":255095.25508825,"volume7d":2599442.30620625,"volume30d":13319367.16250642,"marketCap":3012532.1764961,"percentChange1h":-0.150324,"percentChange24h":-2.753952,"percentChange7d":5.575129,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":368.6159593508271,"volume24h":387813240.52573836,"volume7d":3951849845.1913285,"volume30d":20249012233.711475,"marketCap":4579857297.427335,"percentChange1h":-0.03267424,"percentChange24h":-6.65386551,"percentChange7d":6.75968323,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":17,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00772761,"volume24h":8130.0562849,"volume7d":82845.96376167,"volume30d":424497.13411175,"marketCap":96011.41403638,"percentChange1h":0.81317,"percentChange24h":-0.715383,"percentChange7d":7.078887,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.24246769,"volume24h":255095.25508825,"volume7d":2599442.30620625,"volume30d":13319367.16250642,"marketCap":3012532.1764961,"percentChange1h":-0.150324,"percentChange24h":-2.753952,"percentChange7d":5.575129,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":368.6159593508271,"volume24h":387813240.52573836,"volume7d":3951849845.1913285,"volume30d":20249012233.711475,"marketCap":4579857297.427335,"percentChange1h":-0.03267424,"percentChange24h":-6.65386551,"percentChange7d":6.75968323,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":2416,"name":"THETA","symbol":"THETA","slug":"theta","tags":["media","collectibles-nfts","content-creation","video"],"cmcRank":18,"marketPairCount":52,"circulatingSupply":1000000000,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2018-01-17T00:00:00.000Z","quotes":[{"name":"btc","price":0.00009188,"volume24h":9457.4275363,"volume7d":43229.69324178,"volume30d":73231.18013816,"marketCap":91877.59564817,"percentChange1h":4.154445,"percentChange24h":17.431065,"percentChange7d":45.990894,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00288283,"volume24h":296743.93451991,"volume7d":1356409.99747753,"volume30d":2297761.03917593,"marketCap":2882826.13027975,"percentChange1h":3.159018,"percentChange24h":15.019903,"percentChange7d":43.940676,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":4.38266930158813,"volume24h":451130409.3551763,"volume7d":2062107178.0472276,"volume30d":3493213365.526259,"marketCap":4382669301.58813,"percentChange1h":3.28056685,"percentChange24h":10.40719381,"percentChange7d":45.55569248,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":18,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00009188,"volume24h":9457.4275363,"volume7d":43229.69324178,"volume30d":73231.18013816,"marketCap":91877.59564817,"percentChange1h":4.154445,"percentChange24h":17.431065,"percentChange7d":45.990894,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00288283,"volume24h":296743.93451991,"volume7d":1356409.99747753,"volume30d":2297761.03917593,"marketCap":2882826.13027975,"percentChange1h":3.159018,"percentChange24h":15.019903,"percentChange7d":43.940676,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":4.38266930158813,"volume24h":451130409.3551763,"volume7d":2062107178.0472276,"volume30d":3493213365.526259,"marketCap":4382669301.58813,"percentChange1h":3.28056685,"percentChange24h":10.40719381,"percentChange7d":45.55569248,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":3794,"name":"Cosmos","symbol":"ATOM","slug":"cosmos","tags":["platform","content-creation","interoperability","binance-chain","polychain-capital-portfolio"],"cmcRank":19,"marketPairCount":161,"circulatingSupply":211301313.842286,"totalSupply":269085916.842286,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-03-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00038937,"volume24h":16203.81794401,"volume7d":118500.81173913,"volume30d":373370.13277737,"marketCap":82274.25950262,"percentChange1h":0.151443,"percentChange24h":-9.019345,"percentChange7d":3.452789,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01221717,"volume24h":508424.16423431,"volume7d":3718177.80092001,"volume30d":11715164.80642804,"marketCap":2581504.04862389,"percentChange1h":-0.805727,"percentChange24h":-10.887412,"percentChange7d":1.999954,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":18.57337660950871,"volume24h":772941161.2343972,"volume7d":5652628000.966963,"volume30d":17810194177.47381,"marketCap":3924578880.0767736,"percentChange1h":-0.68884942,"percentChange24h":-14.4611447,"percentChange7d":3.14439406,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":19,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00038937,"volume24h":16203.81794401,"volume7d":118500.81173913,"volume30d":373370.13277737,"marketCap":82274.25950262,"percentChange1h":0.151443,"percentChange24h":-9.019345,"percentChange7d":3.452789,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01221717,"volume24h":508424.16423431,"volume7d":3718177.80092001,"volume30d":11715164.80642804,"marketCap":2581504.04862389,"percentChange1h":-0.805727,"percentChange24h":-10.887412,"percentChange7d":1.999954,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":18.57337660950871,"volume24h":772941161.2343972,"volume7d":5652628000.966963,"volume30d":17810194177.47381,"marketCap":3924578880.0767736,"percentChange1h":-0.68884942,"percentChange24h":-14.4611447,"percentChange7d":3.14439406,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":328,"name":"Monero","symbol":"XMR","slug":"monero","tags":["mineable","pow","medium-of-exchange","ringct"],"cmcRank":20,"marketPairCount":184,"circulatingSupply":17854580.12149482,"totalSupply":17854580.12149482,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2014-05-21T00:00:00.000Z","quotes":[{"name":"btc","price":0.00448924,"volume24h":14635.11687109,"volume7d":382512.73051851,"volume30d":822438.00656767,"marketCap":80153.42141631,"percentChange1h":0.853739,"percentChange24h":2.476618,"percentChange7d":8.015922,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.14085791,"volume24h":459203.32414036,"volume7d":12002030.38536348,"volume30d":25805483.47115798,"marketCap":2514958.90875414,"percentChange1h":-0.110142,"percentChange24h":0.372509,"percentChange7d":6.499004,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":214.1418271724297,"volume24h":698112276.268946,"volume7d":18246306835.562084,"volume30d":39231259573.29548,"marketCap":3823412410.6134424,"percentChange1h":0.00755497,"percentChange24h":-3.65278687,"percentChange7d":7.69392356,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":20,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00448924,"volume24h":14635.11687109,"volume7d":382512.73051851,"volume30d":822438.00656767,"marketCap":80153.42141631,"percentChange1h":0.853739,"percentChange24h":2.476618,"percentChange7d":8.015922,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.14085791,"volume24h":459203.32414036,"volume7d":12002030.38536348,"volume30d":25805483.47115798,"marketCap":2514958.90875414,"percentChange1h":-0.110142,"percentChange24h":0.372509,"percentChange7d":6.499004,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":214.1418271724297,"volume24h":698112276.268946,"volume7d":18246306835.562084,"volume30d":39231259573.29548,"marketCap":3823412410.6134424,"percentChange1h":0.00755497,"percentChange24h":-3.65278687,"percentChange7d":7.69392356,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":1958,"name":"TRON","symbol":"TRX","slug":"tron","tags":["media","payments"],"cmcRank":21,"marketPairCount":501,"circulatingSupply":71659657369.49,"totalSupply":100850743811.66246,"lastUpdated":"2021-03-05T00:10:11.000Z","dateAdded":"2017-09-13T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000106,"volume24h":60520.0986173,"volume7d":274694.30745172,"volume30d":1903621.95891832,"marketCap":76201.91785292,"percentChange1h":1.563917,"percentChange24h":10.087493,"percentChange7d":10.829149,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00003337,"volume24h":1898927.81227291,"volume7d":8619031.89536434,"volume30d":59729590.0772042,"marketCap":2390973.32068922,"percentChange1h":0.593248,"percentChange24h":7.827113,"percentChange7d":9.272724,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.05072478964645,"volume24h":2886879836.8955965,"volume7d":13103241329.908632,"volume30d":90805004879.8478,"marketCap":3634921046.204061,"percentChange1h":0.71177445,"percentChange24h":3.50286054,"percentChange7d":10.49876526,"lastUpdated":"2021-03-05T00:10:11.000Z"}],"rank":21,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000106,"volume24h":60520.0986173,"volume7d":274694.30745172,"volume30d":1903621.95891832,"marketCap":76201.91785292,"percentChange1h":1.563917,"percentChange24h":10.087493,"percentChange7d":10.829149,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00003337,"volume24h":1898927.81227291,"volume7d":8619031.89536434,"volume30d":59729590.0772042,"marketCap":2390973.32068922,"percentChange1h":0.593248,"percentChange24h":7.827113,"percentChange7d":9.272724,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.05072478964645,"volume24h":2886879836.8955965,"volume7d":13103241329.908632,"volume30d":90805004879.8478,"marketCap":3634921046.204061,"percentChange1h":0.71177445,"percentChange24h":3.50286054,"percentChange7d":10.49876526,"lastUpdated":"2021-03-05T00:10:11.000Z"}}},{"id":3635,"name":"Crypto.com Coin","symbol":"CRO","slug":"crypto-com-coin","tags":["medium-of-exchange","mobile","payments"],"cmcRank":22,"marketPairCount":112,"circulatingSupply":24143835615.10503,"totalSupply":100000000000,"maxSupply":40400000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-12-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000312,"volume24h":4680.44578821,"volume7d":48806.64072933,"volume30d":164130.38179182,"marketCap":75369.6229421,"percentChange1h":0.27782,"percentChange24h":1.270605,"percentChange7d":-7.047115,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00009795,"volume24h":146857.47188336,"volume7d":1531396.83546447,"volume30d":5149888.28412706,"marketCap":2364858.55897738,"percentChange1h":-0.680557,"percentChange24h":-0.808741,"percentChange7d":-8.352495,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.14890838630724,"volume24h":223262765.30231372,"volume7d":2328134128.1196303,"volume30d":7829212123.612111,"marketCap":3595219600.712559,"percentChange1h":-0.56353168,"percentChange24h":-4.78666502,"percentChange7d":-7.32420905,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b"},"rank":22,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000312,"volume24h":4680.44578821,"volume7d":48806.64072933,"volume30d":164130.38179182,"marketCap":75369.6229421,"percentChange1h":0.27782,"percentChange24h":1.270605,"percentChange7d":-7.047115,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00009795,"volume24h":146857.47188336,"volume7d":1531396.83546447,"volume30d":5149888.28412706,"marketCap":2364858.55897738,"percentChange1h":-0.680557,"percentChange24h":-0.808741,"percentChange7d":-8.352495,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.14890838630724,"volume24h":223262765.30231372,"volume7d":2328134128.1196303,"volume30d":7829212123.612111,"marketCap":3595219600.712559,"percentChange1h":-0.56353168,"percentChange24h":-4.78666502,"percentChange7d":-7.32420905,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1765,"name":"EOS","symbol":"EOS","slug":"eos","tags":["medium-of-exchange","enterprise-solutions","smart-contracts","binance-chain"],"cmcRank":23,"marketPairCount":476,"circulatingSupply":951052054.9565,"totalSupply":1027552466.4603,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-07-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00007779,"volume24h":52708.22713961,"volume7d":452549.46183208,"volume30d":2030226.15093233,"marketCap":73984.1386942,"percentChange1h":0.551144,"percentChange24h":2.474911,"percentChange7d":-0.713583,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00244086,"volume24h":1653816.18235479,"volume7d":14199559.8013844,"volume30d":63702026.12503648,"marketCap":2321386.47892594,"percentChange1h":-0.409845,"percentChange24h":0.370837,"percentChange7d":-2.107908,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":3.71076467923448,"volume24h":2514244385.655206,"volume7d":21587141237.530396,"volume30d":96844173644.30849,"marketCap":3529130373.64595,"percentChange1h":-0.29250139,"percentChange24h":-3.65439174,"percentChange7d":-1.00955795,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":23,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00007779,"volume24h":52708.22713961,"volume7d":452549.46183208,"volume30d":2030226.15093233,"marketCap":73984.1386942,"percentChange1h":0.551144,"percentChange24h":2.474911,"percentChange7d":-0.713583,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00244086,"volume24h":1653816.18235479,"volume7d":14199559.8013844,"volume30d":63702026.12503648,"marketCap":2321386.47892594,"percentChange1h":-0.409845,"percentChange24h":0.370837,"percentChange7d":-2.107908,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":3.71076467923448,"volume24h":2514244385.655206,"volume7d":21587141237.530396,"volume30d":96844173644.30849,"marketCap":3529130373.64595,"percentChange1h":-0.29250139,"percentChange24h":-3.65439174,"percentChange7d":-1.00955795,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":1720,"name":"IOTA","symbol":"MIOTA","slug":"iota","tags":["dag","medium-of-exchange","iot","sharing-economy"],"cmcRank":24,"marketPairCount":71,"circulatingSupply":2779530283,"totalSupply":2779530283,"maxSupply":2779530283,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2017-06-13T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002578,"volume24h":4556.62933641,"volume7d":46426.90019545,"volume30d":457951.68527812,"marketCap":71645.81861397,"percentChange1h":-1.697739,"percentChange24h":4.97022,"percentChange7d":9.889863,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00080878,"volume24h":142972.50623868,"volume7d":1456728.16193246,"volume30d":14369064.35580807,"marketCap":2248017.44721915,"percentChange1h":-2.637236,"percentChange24h":2.814911,"percentChange7d":8.346629,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.22955658312321,"volume24h":217356575.02263322,"volume7d":2214617707.6037326,"volume30d":21844833645.459236,"marketCap":3417589757.452969,"percentChange1h":-2.52251602,"percentChange24h":-1.30833403,"percentChange7d":9.56227927,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"rank":24,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002578,"volume24h":4556.62933641,"volume7d":46426.90019545,"volume30d":457951.68527812,"marketCap":71645.81861397,"percentChange1h":-1.697739,"percentChange24h":4.97022,"percentChange7d":9.889863,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00080878,"volume24h":142972.50623868,"volume7d":1456728.16193246,"volume30d":14369064.35580807,"marketCap":2248017.44721915,"percentChange1h":-2.637236,"percentChange24h":2.814911,"percentChange7d":8.346629,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.22955658312321,"volume24h":217356575.02263322,"volume7d":2214617707.6037326,"volume30d":21844833645.459236,"marketCap":3417589757.452969,"percentChange1h":-2.52251602,"percentChange24h":-1.30833403,"percentChange7d":9.56227927,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":5426,"name":"Solana","symbol":"SOL","slug":"solana","tags":["dpos","platform"],"cmcRank":25,"marketPairCount":38,"circulatingSupply":261900137.02858052,"totalSupply":488630611,"maxSupply":488630611,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2020-04-10T00:00:00.000Z","quotes":[{"name":"btc","price":0.00027048,"volume24h":2384.77949218,"volume7d":27797.52399257,"volume30d":551828.77924205,"marketCap":70837.56673676,"percentChange1h":1.111435,"percentChange24h":-3.201765,"percentChange7d":-6.950286,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00848666,"volume24h":74826.77998389,"volume7d":872197.70998073,"volume30d":17314628.37067744,"marketCap":2222657.07927502,"percentChange1h":0.145091,"percentChange24h":-5.189283,"percentChange7d":-8.257026,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":12.90199856808492,"volume24h":113756784.74937338,"volume7d":1325974566.5192366,"volume30d":26322881366.838093,"marketCap":3379035192.9239902,"percentChange1h":0.26308883,"percentChange24h":-8.99153119,"percentChange7d":-7.22766901,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"rank":25,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00027048,"volume24h":2384.77949218,"volume7d":27797.52399257,"volume30d":551828.77924205,"marketCap":70837.56673676,"percentChange1h":1.111435,"percentChange24h":-3.201765,"percentChange7d":-6.950286,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00848666,"volume24h":74826.77998389,"volume7d":872197.70998073,"volume30d":17314628.37067744,"marketCap":2222657.07927502,"percentChange1h":0.145091,"percentChange24h":-5.189283,"percentChange7d":-8.257026,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":12.90199856808492,"volume24h":113756784.74937338,"volume7d":1325974566.5192366,"volume30d":26322881366.838093,"marketCap":3379035192.9239902,"percentChange1h":0.26308883,"percentChange24h":-8.99153119,"percentChange7d":-7.22766901,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":3602,"name":"Bitcoin SV","symbol":"BSV","slug":"bitcoin-sv","tags":["mineable","pow","sha-256","medium-of-exchange","store-of-value","state-channels"],"cmcRank":26,"marketPairCount":216,"circulatingSupply":18668895.39423905,"totalSupply":18668895.39423905,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2018-11-09T00:00:00.000Z","quotes":[{"name":"btc","price":0.00376915,"volume24h":14032.91389385,"volume7d":112850.69183401,"volume30d":879685.2837945,"marketCap":70365.821895,"percentChange1h":0.484789,"percentChange24h":1.195793,"percentChange7d":-3.901668,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.11826384,"volume24h":440308.11398325,"volume7d":3540895.04567628,"volume30d":27601720.57893821,"marketCap":2207855.22962862,"percentChange1h":-0.475566,"percentChange24h":-0.882018,"percentChange7d":-5.251221,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":179.79276966424558,"volume24h":669386486.4501218,"volume7d":5383110640.573029,"volume30d":41962021983.12486,"marketCap":3356532409.502317,"percentChange1h":-0.35829909,"percentChange24h":-4.85700292,"percentChange7d":-4.18813884,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"rank":26,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00376915,"volume24h":14032.91389385,"volume7d":112850.69183401,"volume30d":879685.2837945,"marketCap":70365.821895,"percentChange1h":0.484789,"percentChange24h":1.195793,"percentChange7d":-3.901668,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.11826384,"volume24h":440308.11398325,"volume7d":3540895.04567628,"volume30d":27601720.57893821,"marketCap":2207855.22962862,"percentChange1h":-0.475566,"percentChange24h":-0.882018,"percentChange7d":-5.251221,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":179.79276966424558,"volume24h":669386486.4501218,"volume7d":5383110640.573029,"volume30d":41962021983.12486,"marketCap":3356532409.502317,"percentChange1h":-0.35829909,"percentChange24h":-4.85700292,"percentChange7d":-4.18813884,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":3077,"name":"VeChain","symbol":"VET","slug":"vechain","tags":["logistics","data-provenance","smart-contracts"],"cmcRank":27,"marketPairCount":122,"circulatingSupply":64315576989,"totalSupply":86712634466,"maxSupply":86712634466,"lastUpdated":"2021-03-05T00:11:02.000Z","dateAdded":"2017-08-22T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000103,"volume24h":14288.85431001,"volume7d":124191.73746993,"volume30d":253409.51752247,"marketCap":66083.38168966,"percentChange1h":1.016218,"percentChange24h":-2.001418,"percentChange7d":22.900652,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00003224,"volume24h":448338.70854002,"volume7d":3896740.9129224,"volume30d":7951183.02369217,"marketCap":2073485.90446046,"percentChange1h":0.050784,"percentChange24h":-4.013582,"percentChange7d":21.174702,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.04901230970596,"volume24h":681595145.1228583,"volume7d":5924091847.207663,"volume30d":12087931833.01093,"marketCap":3152254978.3023825,"percentChange1h":0.16867106,"percentChange24h":-7.86298036,"percentChange7d":22.53428254,"lastUpdated":"2021-03-05T00:11:02.000Z"}],"rank":27,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000103,"volume24h":14288.85431001,"volume7d":124191.73746993,"volume30d":253409.51752247,"marketCap":66083.38168966,"percentChange1h":1.016218,"percentChange24h":-2.001418,"percentChange7d":22.900652,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00003224,"volume24h":448338.70854002,"volume7d":3896740.9129224,"volume30d":7951183.02369217,"marketCap":2073485.90446046,"percentChange1h":0.050784,"percentChange24h":-4.013582,"percentChange7d":21.174702,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.04901230970596,"volume24h":681595145.1228583,"volume7d":5924091847.207663,"volume30d":12087931833.01093,"marketCap":3152254978.3023825,"percentChange1h":0.16867106,"percentChange24h":-7.86298036,"percentChange7d":22.53428254,"lastUpdated":"2021-03-05T00:11:02.000Z"}}},{"id":4172,"name":"Terra","symbol":"LUNA","slug":"terra-luna","tags":["store-of-value","defi","payments","stablecoin-algorithmically-stabilized"],"cmcRank":28,"marketPairCount":44,"circulatingSupply":408504297.8388771,"totalSupply":953524203.973819,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2019-07-26T00:00:00.000Z","quotes":[{"name":"btc","price":0.00015317,"volume24h":7764.16661621,"volume7d":49644.10382155,"volume30d":100178.41936583,"marketCap":62570.56341068,"percentChange1h":-0.112251,"percentChange24h":5.333716,"percentChange7d":19.934559,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00480598,"volume24h":243614.80340409,"volume7d":1557673.75823744,"volume30d":3143279.5231586,"marketCap":1963264.86249567,"percentChange1h":-1.0669,"percentChange24h":3.170943,"percentChange7d":18.250263,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":7.30638437187105,"volume24h":370359873.277513,"volume7d":2368082101.9386754,"volume30d":4778628349.369416,"marketCap":2984689417.5721283,"percentChange1h":-0.95033001,"percentChange24h":-0.96658013,"percentChange7d":19.57703249,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":28,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00015317,"volume24h":7764.16661621,"volume7d":49644.10382155,"volume30d":100178.41936583,"marketCap":62570.56341068,"percentChange1h":-0.112251,"percentChange24h":5.333716,"percentChange7d":19.934559,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00480598,"volume24h":243614.80340409,"volume7d":1557673.75823744,"volume30d":3143279.5231586,"marketCap":1963264.86249567,"percentChange1h":-1.0669,"percentChange24h":3.170943,"percentChange7d":18.250263,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":7.30638437187105,"volume24h":370359873.277513,"volume7d":2368082101.9386754,"volume30d":4778628349.369416,"marketCap":2984689417.5721283,"percentChange1h":-0.95033001,"percentChange24h":-0.96658013,"percentChange7d":19.57703249,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":4687,"name":"Binance USD","symbol":"BUSD","slug":"binance-usd","tags":["store-of-value","stablecoin","stablecoin-asset-backed","binance-chain"],"cmcRank":29,"marketPairCount":374,"circulatingSupply":2922846511.03,"totalSupply":2922846511.03,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2019-09-20T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002096,"volume24h":81676.76636723,"volume7d":581235.74457485,"volume30d":2512440.99331119,"marketCap":61274.09836393,"percentChange1h":0.856206,"percentChange24h":6.372425,"percentChange7d":0.319057,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00065778,"volume24h":2562756.6182932,"volume7d":18237325.22049777,"volume30d":78832391.02206641,"marketCap":1922585.92126515,"percentChange1h":-0.107699,"percentChange24h":4.188325,"percentChange7d":-1.08977,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1,"volume24h":3896077755.249665,"volume7d":27725628176.957794,"volume30d":119846388401.39644,"marketCap":2922846511.03,"percentChange1h":0.010001,"percentChange24h":0.010001,"percentChange7d":0.020004,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"BUSD-BD1"},"rank":29,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002096,"volume24h":81676.76636723,"volume7d":581235.74457485,"volume30d":2512440.99331119,"marketCap":61274.09836393,"percentChange1h":0.856206,"percentChange24h":6.372425,"percentChange7d":0.319057,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00065778,"volume24h":2562756.6182932,"volume7d":18237325.22049777,"volume30d":78832391.02206641,"marketCap":1922585.92126515,"percentChange1h":-0.107699,"percentChange24h":4.188325,"percentChange7d":-1.08977,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1,"volume24h":3896077755.249665,"volume7d":27725628176.957794,"volume30d":119846388401.39644,"marketCap":2922846511.03,"percentChange1h":0.010001,"percentChange24h":0.010001,"percentChange7d":0.020004,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":2502,"name":"Huobi Token","symbol":"HT","slug":"huobi-token","tags":["marketplace","discount-token","payments"],"cmcRank":30,"marketPairCount":178,"circulatingSupply":186866518.25441208,"totalSupply":500000000,"maxSupply":500000000,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2018-02-03T00:00:00.000Z","quotes":[{"name":"btc","price":0.00032456,"volume24h":54563.27695705,"volume7d":204570.11655507,"volume30d":1489832.08628559,"marketCap":60649.86245965,"percentChange1h":0.85685,"percentChange24h":8.592391,"percentChange7d":-12.178476,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01018374,"volume24h":1712021.73343561,"volume7d":6418758.27636665,"volume30d":46746182.65502062,"marketCap":1902999.38807815,"percentChange1h":-0.107061,"percentChange24h":6.362709,"percentChange7d":-13.411795,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":15.48201224981289,"volume24h":2602732442.296767,"volume7d":9758235003.030502,"volume30d":71066741603.56287,"marketCap":2893069724.6946917,"percentChange1h":0.0106396,"percentChange24h":2.0971852,"percentChange7d":-12.44027395,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x6f259637dcd74c767781e37bc6133cd6a68aa161"},"rank":30,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00032456,"volume24h":54563.27695705,"volume7d":204570.11655507,"volume30d":1489832.08628559,"marketCap":60649.86245965,"percentChange1h":0.85685,"percentChange24h":8.592391,"percentChange7d":-12.178476,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01018374,"volume24h":1712021.73343561,"volume7d":6418758.27636665,"volume30d":46746182.65502062,"marketCap":1902999.38807815,"percentChange1h":-0.107061,"percentChange24h":6.362709,"percentChange7d":-13.411795,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":15.48201224981289,"volume24h":2602732442.296767,"volume7d":9758235003.030502,"volume30d":71066741603.56287,"marketCap":2893069724.6946917,"percentChange1h":0.0106396,"percentChange24h":2.0971852,"percentChange7d":-12.44027395,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":2011,"name":"Tezos","symbol":"XTZ","slug":"tezos","tags":["platform","enterprise-solutions","smart-contracts","binance-chain","polychain-capital-portfolio"],"cmcRank":31,"marketPairCount":159,"circulatingSupply":761934225.56633,"totalSupply":761934225.56633,"lastUpdated":"2021-03-05T00:10:10.000Z","dateAdded":"2017-10-06T00:00:00.000Z","quotes":[{"name":"btc","price":0.00007566,"volume24h":10486.2859636,"volume7d":65828.57571378,"volume30d":344119.77595598,"marketCap":57645.63565587,"percentChange1h":0.3131,"percentChange24h":-1.003976,"percentChange7d":5.475018,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00237387,"volume24h":329026.2329156,"volume7d":2065490.90502413,"volume30d":10797381.83257209,"marketCap":1808736.3256839,"percentChange1h":-0.645614,"percentChange24h":-3.036619,"percentChange7d":3.993784,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":3.60892644383478,"volume24h":500208165.61574244,"volume7d":3140100433.7643824,"volume30d":16414917777.419664,"marketCap":2749764575.1091022,"percentChange1h":-0.52854849,"percentChange24h":-6.92519712,"percentChange7d":5.16059525,"lastUpdated":"2021-03-05T00:10:10.000Z"}],"rank":31,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00007566,"volume24h":10486.2859636,"volume7d":65828.57571378,"volume30d":344119.77595598,"marketCap":57645.63565587,"percentChange1h":0.3131,"percentChange24h":-1.003976,"percentChange7d":5.475018,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00237387,"volume24h":329026.2329156,"volume7d":2065490.90502413,"volume30d":10797381.83257209,"marketCap":1808736.3256839,"percentChange1h":-0.645614,"percentChange24h":-3.036619,"percentChange7d":3.993784,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":3.60892644383478,"volume24h":500208165.61574244,"volume7d":3140100433.7643824,"volume30d":16414917777.419664,"marketCap":2749764575.1091022,"percentChange1h":-0.52854849,"percentChange24h":-6.92519712,"percentChange7d":5.16059525,"lastUpdated":"2021-03-05T00:10:10.000Z"}}},{"id":4195,"name":"FTX Token","symbol":"FTT","slug":"ftx-token","tags":["marketplace","derivatives"],"cmcRank":32,"marketPairCount":38,"circulatingSupply":94346957.5237492,"totalSupply":345219293.59097695,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2019-07-31T00:00:00.000Z","quotes":[{"name":"btc","price":0.0006089,"volume24h":2061.44915253,"volume7d":1541.84709627,"volume30d":50938.05856763,"marketCap":57448.11947181,"percentChange1h":0.694841,"percentChange24h":-1.690335,"percentChange7d":1.127635,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01910543,"volume24h":64681.70440495,"volume7d":48378.24789238,"volume30d":1598273.93423312,"marketCap":1802538.89732769,"percentChange1h":-0.267522,"percentChange24h":-3.708886,"percentChange7d":-0.292548,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":29.04537563161002,"volume24h":98333547.51868302,"volume7d":73547918.71613704,"volume30d":2429805264.187835,"marketCap":2740342820.9768505,"percentChange1h":-0.15000961,"percentChange24h":-7.57050257,"percentChange7d":0.82617133,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"FTT-F11"},"rank":32,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0006089,"volume24h":2061.44915253,"volume7d":1541.84709627,"volume30d":50938.05856763,"marketCap":57448.11947181,"percentChange1h":0.694841,"percentChange24h":-1.690335,"percentChange7d":1.127635,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01910543,"volume24h":64681.70440495,"volume7d":48378.24789238,"volume30d":1598273.93423312,"marketCap":1802538.89732769,"percentChange1h":-0.267522,"percentChange24h":-3.708886,"percentChange7d":-0.292548,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":29.04537563161002,"volume24h":98333547.51868302,"volume7d":73547918.71613704,"volume30d":2429805264.187835,"marketCap":2740342820.9768505,"percentChange1h":-0.15000961,"percentChange24h":-7.57050257,"percentChange7d":0.82617133,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":1376,"name":"Neo","symbol":"NEO","slug":"neo","tags":["platform","enterprise-solutions","smart-contracts"],"cmcRank":33,"marketPairCount":274,"circulatingSupply":70538831,"totalSupply":100000000,"maxSupply":100000000,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2016-09-08T00:00:00.000Z","quotes":[{"name":"btc","price":0.00078238,"volume24h":16334.85640719,"volume7d":38038.85907062,"volume30d":1144510.30886215,"marketCap":55187.93140553,"percentChange1h":0.651224,"percentChange24h":0.290737,"percentChange7d":-4.325094,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.02454848,"volume24h":512535.73357913,"volume7d":1193538.16478556,"volume30d":35911085.84727332,"marketCap":1731621.39920602,"percentChange1h":-0.310722,"percentChange24h":-1.768491,"percentChange7d":-5.668701,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":37.32028382612253,"volume24h":779191849.9456043,"volume7d":1814498286.988919,"volume30d":54594486943.36195,"marketCap":2632529193.6828904,"percentChange1h":-0.193261,"percentChange24h":-5.70792542,"percentChange7d":-4.61030303,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":33,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00078238,"volume24h":16334.85640719,"volume7d":38038.85907062,"volume30d":1144510.30886215,"marketCap":55187.93140553,"percentChange1h":0.651224,"percentChange24h":0.290737,"percentChange7d":-4.325094,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.02454848,"volume24h":512535.73357913,"volume7d":1193538.16478556,"volume30d":35911085.84727332,"marketCap":1731621.39920602,"percentChange1h":-0.310722,"percentChange24h":-1.768491,"percentChange7d":-5.668701,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":37.32028382612253,"volume24h":779191849.9456043,"volume7d":1814498286.988919,"volume30d":54594486943.36195,"marketCap":2632529193.6828904,"percentChange1h":-0.193261,"percentChange24h":-5.70792542,"percentChange7d":-4.61030303,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":4943,"name":"Dai","symbol":"DAI","slug":"multi-collateral-dai","tags":["defi","stablecoin"],"cmcRank":34,"marketPairCount":385,"circulatingSupply":2542069329.9770327,"totalSupply":2542069355.7971773,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-11-22T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002099,"volume24h":7180.92978653,"volume7d":50628.54979169,"volume30d":292345.28675957,"marketCap":53360.19832559,"percentChange1h":0.848633,"percentChange24h":6.388753,"percentChange7d":0.31494,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00065863,"volume24h":225314.69051063,"volume7d":1588562.5352733,"volume30d":9172863.37097823,"marketCap":1674272.96028716,"percentChange1h":-0.115199,"percentChange24h":4.204317,"percentChange7d":-1.093829,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.00128826051718,"volume24h":342538790.98907703,"volume7d":2415041331.791895,"volume30d":13945213789.13242,"marketCap":2545344177.5267763,"percentChange1h":0.00249157,"percentChange24h":0.02535186,"percentChange7d":0.01589891,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x6b175474e89094c44da98b954eedeac495271d0f"},"rank":34,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002099,"volume24h":7180.92978653,"volume7d":50628.54979169,"volume30d":292345.28675957,"marketCap":53360.19832559,"percentChange1h":0.848633,"percentChange24h":6.388753,"percentChange7d":0.31494,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00065863,"volume24h":225314.69051063,"volume7d":1588562.5352733,"volume30d":9172863.37097823,"marketCap":1674272.96028716,"percentChange1h":-0.115199,"percentChange24h":4.204317,"percentChange7d":-1.093829,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.00128826051718,"volume24h":342538790.98907703,"volume7d":2415041331.791895,"volume30d":13945213789.13242,"marketCap":2545344177.5267763,"percentChange1h":0.00249157,"percentChange24h":0.02535186,"percentChange7d":0.01589891,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":6892,"name":"Elrond","symbol":"EGLD","slug":"elrond-egld","tags":[],"cmcRank":35,"marketPairCount":30,"circulatingSupply":17063225.67034905,"totalSupply":21294942,"maxSupply":31415926,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2020-09-04T00:00:00.000Z","quotes":[{"name":"btc","price":0.00307347,"volume24h":7129.48509212,"volume7d":29736.01618358,"volume30d":107139.04126183,"marketCap":52443.36361613,"percentChange1h":2.148281,"percentChange24h":11.889197,"percentChange7d":26.444798,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.09643579,"volume24h":223700.51995818,"volume7d":933021.41680685,"volume30d":3361681.65420297,"marketCap":1645505.609129,"percentChange1h":1.172027,"percentChange24h":9.591823,"percentChange7d":24.669076,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":146.6082751646763,"volume24h":340084818.59947157,"volume7d":1418442922.4549956,"volume30d":5110658195.039189,"marketCap":2501610084.2755017,"percentChange1h":1.29123519,"percentChange24h":5.19680043,"percentChange7d":26.06786392,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":35,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00307347,"volume24h":7129.48509212,"volume7d":29736.01618358,"volume30d":107139.04126183,"marketCap":52443.36361613,"percentChange1h":2.148281,"percentChange24h":11.889197,"percentChange7d":26.444798,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.09643579,"volume24h":223700.51995818,"volume7d":933021.41680685,"volume30d":3361681.65420297,"marketCap":1645505.609129,"percentChange1h":1.172027,"percentChange24h":9.591823,"percentChange7d":24.669076,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":146.6082751646763,"volume24h":340084818.59947157,"volume7d":1418442922.4549956,"volume30d":5110658195.039189,"marketCap":2501610084.2755017,"percentChange1h":1.29123519,"percentChange24h":5.19680043,"percentChange7d":26.06786392,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":2586,"name":"Synthetix","symbol":"SNX","slug":"synthetix-network-token","tags":["services","defi","dao","yield-farming","three-arrows-capital-portfolio"],"cmcRank":36,"marketPairCount":164,"circulatingSupply":114841533.01197928,"totalSupply":215258834.2449152,"maxSupply":212424133,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-03-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00044392,"volume24h":4165.69169689,"volume7d":33582.42164691,"volume30d":181866.47017943,"marketCap":50979.95600322,"percentChange1h":-0.198033,"percentChange24h":-1.030773,"percentChange7d":12.742671,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01392866,"volume24h":130706.12905977,"volume7d":1053709.36144778,"volume30d":5706390.21141467,"marketCap":1599588.54223163,"percentChange1h":-1.151862,"percentChange24h":-3.062867,"percentChange7d":11.159374,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":21.17529919124767,"volume24h":198708390.1255199,"volume7d":1601920983.9634235,"volume30d":8675244385.974516,"marketCap":2431803821.1102076,"percentChange1h":-1.03539199,"percentChange24h":-6.95039161,"percentChange7d":12.4065826,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f"},"rank":36,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00044392,"volume24h":4165.69169689,"volume7d":33582.42164691,"volume30d":181866.47017943,"marketCap":50979.95600322,"percentChange1h":-0.198033,"percentChange24h":-1.030773,"percentChange7d":12.742671,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01392866,"volume24h":130706.12905977,"volume7d":1053709.36144778,"volume30d":5706390.21141467,"marketCap":1599588.54223163,"percentChange1h":-1.151862,"percentChange24h":-3.062867,"percentChange7d":11.159374,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":21.17529919124767,"volume24h":198708390.1255199,"volume7d":1601920983.9634235,"volume30d":8675244385.974516,"marketCap":2431803821.1102076,"percentChange1h":-1.03539199,"percentChange24h":-6.95039161,"percentChange7d":12.4065826,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":4030,"name":"Algorand","symbol":"ALGO","slug":"algorand","tags":["pos","platform","research","smart-contracts"],"cmcRank":37,"marketPairCount":132,"circulatingSupply":2215007594.717789,"totalSupply":3700000000,"maxSupply":10000000000,"lastUpdated":"2021-03-05T00:10:11.000Z","dateAdded":"2019-06-20T00:00:00.000Z","quotes":[{"name":"btc","price":0.0000224,"volume24h":11446.72869384,"volume7d":82285.53102208,"volume30d":400471.13711132,"marketCap":49608.61390106,"percentChange1h":0.154051,"percentChange24h":-3.958229,"percentChange7d":6.056467,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00070273,"volume24h":359161.86478352,"volume7d":2581857.7129814,"volume30d":12565507.94938457,"marketCap":1556560.19764164,"percentChange1h":-0.803144,"percentChange24h":-5.930215,"percentChange7d":4.567067,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.06834360146715,"volume24h":546022412.7131515,"volume7d":3925116544.803226,"volume30d":19102943937.616257,"marketCap":2366389191.017892,"percentChange1h":-0.68626331,"percentChange24h":-9.70274933,"percentChange7d":5.74031105,"lastUpdated":"2021-03-05T00:10:11.000Z"}],"rank":37,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0000224,"volume24h":11446.72869384,"volume7d":82285.53102208,"volume30d":400471.13711132,"marketCap":49608.61390106,"percentChange1h":0.154051,"percentChange24h":-3.958229,"percentChange7d":6.056467,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00070273,"volume24h":359161.86478352,"volume7d":2581857.7129814,"volume30d":12565507.94938457,"marketCap":1556560.19764164,"percentChange1h":-0.803144,"percentChange24h":-5.930215,"percentChange7d":4.567067,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.06834360146715,"volume24h":546022412.7131515,"volume7d":3925116544.803226,"volume30d":19102943937.616257,"marketCap":2366389191.017892,"percentChange1h":-0.68626331,"percentChange24h":-9.70274933,"percentChange7d":5.74031105,"lastUpdated":"2021-03-05T00:10:11.000Z"}}},{"id":2280,"name":"Filecoin","symbol":"FIL","slug":"filecoin","tags":["mineable","distributed-computing","filesharing","ipfs","polychain-capital-portfolio"],"cmcRank":38,"marketPairCount":111,"circulatingSupply":57415312,"totalSupply":57415312,"maxSupply":2000000000,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2017-12-13T00:00:00.000Z","quotes":[{"name":"btc","price":0.00084423,"volume24h":22350.96432223,"volume7d":144231.87463851,"volume30d":469306.76711785,"marketCap":48471.59090692,"percentChange1h":0.895361,"percentChange24h":1.368405,"percentChange7d":15.072379,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.02648917,"volume24h":701302.02614172,"volume7d":4525536.54777125,"volume30d":14725350.63439544,"marketCap":1520884.03986751,"percentChange1h":-0.068918,"percentChange24h":-0.71295,"percentChange7d":13.456364,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":40.27064866923993,"volume24h":1066167268.5805088,"volume7d":6880029944.507083,"volume30d":22386484395.513462,"marketCap":2312151857.7867956,"percentChange1h":0.04882814,"percentChange24h":-4.69471464,"percentChange7d":14.72934602,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"rank":38,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00084423,"volume24h":22350.96432223,"volume7d":144231.87463851,"volume30d":469306.76711785,"marketCap":48471.59090692,"percentChange1h":0.895361,"percentChange24h":1.368405,"percentChange7d":15.072379,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.02648917,"volume24h":701302.02614172,"volume7d":4525536.54777125,"volume30d":14725350.63439544,"marketCap":1520884.03986751,"percentChange1h":-0.068918,"percentChange24h":-0.71295,"percentChange7d":13.456364,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":40.27064866923993,"volume24h":1066167268.5805088,"volume7d":6880029944.507083,"volume30d":22386484395.513462,"marketCap":2312151857.7867956,"percentChange1h":0.04882814,"percentChange24h":-4.69471464,"percentChange7d":14.72934602,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":6719,"name":"The Graph","symbol":"GRT","slug":"the-graph","tags":["ai-big-data","enterprise-solutions"],"cmcRank":39,"marketPairCount":89,"circulatingSupply":1245666867,"totalSupply":0,"maxSupply":10000000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2020-12-17T00:00:00.000Z","quotes":[{"name":"btc","price":0.00003785,"volume24h":6368.10454865,"volume7d":63579.05538281,"volume30d":263936.81471379,"marketCap":47152.90569326,"percentChange1h":-0.615635,"percentChange24h":-3.999938,"percentChange7d":4.132075,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00118772,"volume24h":199810.82508403,"volume7d":1994908.12643762,"volume30d":8281496.05822752,"marketCap":1479507.90061694,"percentChange1h":-1.565473,"percentChange24h":-5.971067,"percentChange7d":2.6697,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.80565854543727,"volume24h":303766071.7803386,"volume7d":3032795669.983195,"volume30d":12590096282.391731,"marketCap":2249249023.166621,"percentChange1h":-1.44949063,"percentChange24h":-9.74196263,"percentChange7d":3.82165488,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xc944e90c64b2c07662a292be6244bdf05cda44a7"},"rank":39,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00003785,"volume24h":6368.10454865,"volume7d":63579.05538281,"volume30d":263936.81471379,"marketCap":47152.90569326,"percentChange1h":-0.615635,"percentChange24h":-3.999938,"percentChange7d":4.132075,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00118772,"volume24h":199810.82508403,"volume7d":1994908.12643762,"volume30d":8281496.05822752,"marketCap":1479507.90061694,"percentChange1h":-1.565473,"percentChange24h":-5.971067,"percentChange7d":2.6697,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.80565854543727,"volume24h":303766071.7803386,"volume7d":3032795669.983195,"volume30d":12590096282.391731,"marketCap":2249249023.166621,"percentChange1h":-1.44949063,"percentChange24h":-9.74196263,"percentChange7d":3.82165488,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":5692,"name":"Compound","symbol":"COMP","slug":"compound","tags":["defi","dao","yield-farming","three-arrows-capital-portfolio","polychain-capital-portfolio"],"cmcRank":40,"marketPairCount":167,"circulatingSupply":4650311.35684661,"totalSupply":10000000,"maxSupply":10000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2020-06-16T00:00:00.000Z","quotes":[{"name":"btc","price":0.00977583,"volume24h":5171.75134415,"volume7d":45716.97014765,"volume30d":209356.44750153,"marketCap":45460.6419049,"percentChange1h":1.872424,"percentChange24h":0.491181,"percentChange7d":16.076853,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.30673431,"volume24h":162273.07439924,"volume7d":1434452.81963589,"volume30d":6568938.0870516,"marketCap":1426410.05631666,"percentChange1h":0.898807,"percentChange24h":-1.572162,"percentChange7d":14.446733,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":466.3184645155984,"volume24h":246698617.78131682,"volume7d":2180753209.901241,"volume30d":9986548614.83454,"marketCap":2168526051.4441605,"percentChange1h":1.01769347,"percentChange24h":-5.51947038,"percentChange7d":15.73082634,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xc00e94cb662c3520282e6f5717214004a7f26888"},"rank":40,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00977583,"volume24h":5171.75134415,"volume7d":45716.97014765,"volume30d":209356.44750153,"marketCap":45460.6419049,"percentChange1h":1.872424,"percentChange24h":0.491181,"percentChange7d":16.076853,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.30673431,"volume24h":162273.07439924,"volume7d":1434452.81963589,"volume30d":6568938.0870516,"marketCap":1426410.05631666,"percentChange1h":0.898807,"percentChange24h":-1.572162,"percentChange7d":14.446733,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":466.3184645155984,"volume24h":246698617.78131682,"volume7d":2180753209.901241,"volume30d":9986548614.83454,"marketCap":2168526051.4441605,"percentChange1h":1.01769347,"percentChange24h":-5.51947038,"percentChange7d":15.73082634,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":6758,"name":"SushiSwap","symbol":"SUSHI","slug":"sushiswap","tags":["defi","memes","dao","yield-farming","amm","yearn-partnerships"],"cmcRank":41,"marketPairCount":158,"circulatingSupply":127244443,"totalSupply":202332980.62745193,"maxSupply":250000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2020-08-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00035601,"volume24h":14537.24482985,"volume7d":100130.18468015,"volume30d":821351.02438781,"marketCap":45300.37412207,"percentChange1h":0.213373,"percentChange24h":2.755064,"percentChange7d":16.048988,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01117048,"volume24h":456132.41141244,"volume7d":3141766.07244977,"volume30d":25771377.43465207,"marketCap":1421381.36407757,"percentChange1h":-0.744388,"percentChange24h":0.645237,"percentChange7d":14.419259,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":16.98212541848296,"volume24h":693443664.8673878,"volume7d":4776327498.169484,"volume30d":39179409245.72168,"marketCap":2160881089.831006,"percentChange1h":-0.62743818,"percentChange24h":-3.39099605,"percentChange7d":15.70304376,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x6b3595068778dd592e39a122f4f5a5cf09c90fe2"},"rank":41,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00035601,"volume24h":14537.24482985,"volume7d":100130.18468015,"volume30d":821351.02438781,"marketCap":45300.37412207,"percentChange1h":0.213373,"percentChange24h":2.755064,"percentChange7d":16.048988,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01117048,"volume24h":456132.41141244,"volume7d":3141766.07244977,"volume30d":25771377.43465207,"marketCap":1421381.36407757,"percentChange1h":-0.744388,"percentChange24h":0.645237,"percentChange7d":14.419259,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":16.98212541848296,"volume24h":693443664.8673878,"volume7d":4776327498.169484,"volume30d":39179409245.72168,"marketCap":2160881089.831006,"percentChange1h":-0.62743818,"percentChange24h":-3.39099605,"percentChange7d":15.70304376,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1518,"name":"Maker","symbol":"MKR","slug":"maker","tags":["store-of-value","defi","dao","polychain-capital-portfolio"],"cmcRank":42,"marketPairCount":196,"circulatingSupply":995238.77828647,"totalSupply":995238.77828647,"maxSupply":1005577,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2017-01-29T00:00:00.000Z","quotes":[{"name":"btc","price":0.04513755,"volume24h":2019.18797138,"volume7d":36436.67555556,"volume30d":136798.18919002,"marketCap":44922.63579848,"percentChange1h":3.461357,"percentChange24h":3.197587,"percentChange7d":4.891561,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":1.41627233,"volume24h":63355.68323012,"volume7d":1143266.75236853,"volume30d":4292291.19014091,"marketCap":1409529.13936526,"percentChange1h":2.472554,"percentChange24h":1.078675,"percentChange7d":3.41852,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":2153.113980855009,"volume24h":96317639.50566718,"volume7d":1738072250.1796107,"volume30d":6525434411.364316,"marketCap":2142862527.8176568,"percentChange1h":2.59329429,"percentChange24h":-2.97494111,"percentChange7d":4.57887705,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2"},"rank":42,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.04513755,"volume24h":2019.18797138,"volume7d":36436.67555556,"volume30d":136798.18919002,"marketCap":44922.63579848,"percentChange1h":3.461357,"percentChange24h":3.197587,"percentChange7d":4.891561,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":1.41627233,"volume24h":63355.68323012,"volume7d":1143266.75236853,"volume30d":4292291.19014091,"marketCap":1409529.13936526,"percentChange1h":2.472554,"percentChange24h":1.078675,"percentChange7d":3.41852,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":2153.113980855009,"volume24h":96317639.50566718,"volume7d":1738072250.1796107,"volume30d":6525434411.364316,"marketCap":2142862527.8176568,"percentChange1h":2.59329429,"percentChange24h":-2.97494111,"percentChange7d":4.57887705,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":131,"name":"Dash","symbol":"DASH","slug":"dash","tags":["mineable","hybrid-pow-pos","x11","medium-of-exchange","privacy","masternodes"],"cmcRank":43,"marketPairCount":366,"circulatingSupply":10008171.30110249,"totalSupply":10008171.30110249,"maxSupply":18900000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2014-02-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00436535,"volume24h":20856.95869527,"volume7d":170323.77158629,"volume30d":44439442.76871459,"marketCap":43689.12940255,"percentChange1h":1.199766,"percentChange24h":-1.769354,"percentChange7d":-6.260305,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.13697064,"volume24h":654424.89108151,"volume7d":5344217.11705453,"volume30d":1394368082.0654943,"marketCap":1370825.63994326,"percentChange1h":0.232578,"percentChange24h":-3.786282,"percentChange7d":-7.576735,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":208.2321295488889,"volume24h":994901444.18102,"volume7d":8124644096.2652855,"volume30d":2119813652372.345,"marketCap":2084022822.9186459,"percentChange1h":0.35067947,"percentChange24h":-7.64479563,"percentChange7d":-6.53974465,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":43,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00436535,"volume24h":20856.95869527,"volume7d":170323.77158629,"volume30d":44439442.76871459,"marketCap":43689.12940255,"percentChange1h":1.199766,"percentChange24h":-1.769354,"percentChange7d":-6.260305,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.13697064,"volume24h":654424.89108151,"volume7d":5344217.11705453,"volume30d":1394368082.0654943,"marketCap":1370825.63994326,"percentChange1h":0.232578,"percentChange24h":-3.786282,"percentChange7d":-7.576735,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":208.2321295488889,"volume24h":994901444.18102,"volume7d":8124644096.2652855,"volume30d":2119813652372.345,"marketCap":2084022822.9186459,"percentChange1h":0.35067947,"percentChange24h":-7.64479563,"percentChange7d":-6.53974465,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":5034,"name":"Kusama","symbol":"KSM","slug":"kusama","tags":["substrate","dot-ecosystem"],"cmcRank":44,"marketPairCount":68,"circulatingSupply":8470098.05726206,"totalSupply":9651217.45126206,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-12-12T00:00:00.000Z","quotes":[{"name":"btc","price":0.00484762,"volume24h":3585.89484312,"volume7d":23965.17459165,"volume30d":123808.40336632,"marketCap":41059.80481333,"percentChange1h":-0.386578,"percentChange24h":-1.370442,"percentChange7d":1.195816,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.15210282,"volume24h":112513.95164668,"volume7d":751950.79978019,"volume30d":3884713.11046737,"marketCap":1288325.81419871,"percentChange1h":-1.338606,"percentChange24h":-3.395561,"percentChange7d":-0.225324,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":231.23710450231974,"volume24h":171051398.73087788,"volume7d":1143166995.7082946,"volume30d":5905806359.910481,"marketCap":1958600949.6120024,"percentChange1h":-1.22235639,"percentChange24h":-7.2697441,"percentChange7d":0.89414947,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":44,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00484762,"volume24h":3585.89484312,"volume7d":23965.17459165,"volume30d":123808.40336632,"marketCap":41059.80481333,"percentChange1h":-0.386578,"percentChange24h":-1.370442,"percentChange7d":1.195816,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.15210282,"volume24h":112513.95164668,"volume7d":751950.79978019,"volume30d":3884713.11046737,"marketCap":1288325.81419871,"percentChange1h":-1.338606,"percentChange24h":-3.395561,"percentChange7d":-0.225324,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":231.23710450231974,"volume24h":171051398.73087788,"volume7d":1143166995.7082946,"volume30d":5905806359.910481,"marketCap":1958600949.6120024,"percentChange1h":-1.22235639,"percentChange24h":-7.2697441,"percentChange7d":0.89414947,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":5805,"name":"Avalanche","symbol":"AVAX","slug":"avalanche","tags":["defi","polychain-capital-portfolio"],"cmcRank":45,"marketPairCount":49,"circulatingSupply":76937055.27646953,"totalSupply":360000000,"maxSupply":720000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2020-07-13T00:00:00.000Z","quotes":[{"name":"btc","price":0.00052068,"volume24h":5751.4404872,"volume7d":84550.72768687,"volume30d":1038254.8247658,"marketCap":40059.41280399,"percentChange1h":0.094831,"percentChange24h":-4.027118,"percentChange7d":-9.477906,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01633721,"volume24h":180461.87219284,"volume7d":2652932.36496176,"volume30d":32577127.40095651,"marketCap":1256936.70127408,"percentChange1h":-0.861798,"percentChange24h":-5.997689,"percentChange7d":-10.749149,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":24.83694064037185,"volume24h":274350471.247435,"volume7d":4033169088.133382,"volume30d":49525975463.613014,"marketCap":1910881074.9466815,"percentChange1h":-0.74498566,"percentChange24h":-9.76751712,"percentChange7d":-9.74775356,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"rank":45,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00052068,"volume24h":5751.4404872,"volume7d":84550.72768687,"volume30d":1038254.8247658,"marketCap":40059.41280399,"percentChange1h":0.094831,"percentChange24h":-4.027118,"percentChange7d":-9.477906,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01633721,"volume24h":180461.87219284,"volume7d":2652932.36496176,"volume30d":32577127.40095651,"marketCap":1256936.70127408,"percentChange1h":-0.861798,"percentChange24h":-5.997689,"percentChange7d":-10.749149,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":24.83694064037185,"volume24h":274350471.247435,"volume7d":4033169088.133382,"volume30d":49525975463.613014,"marketCap":1910881074.9466815,"percentChange1h":-0.74498566,"percentChange24h":-9.76751712,"percentChange7d":-9.74775356,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":3957,"name":"UNUS SED LEO","symbol":"LEO","slug":"unus-sed-leo","tags":["marketplace","discount-token","payments"],"cmcRank":46,"marketPairCount":21,"circulatingSupply":999498892.9,"totalSupply":999498892.9,"lastUpdated":"2021-03-05T00:10:11.000Z","dateAdded":"2019-05-21T00:00:00.000Z","quotes":[{"name":"btc","price":0.00003985,"volume24h":12.29842534,"volume7d":274.66902338,"volume30d":12088.05018826,"marketCap":39825.20404553,"percentChange1h":-0.07669,"percentChange24h":4.713002,"percentChange7d":-4.064307,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00125021,"volume24h":385.88539121,"volume7d":8618.23856163,"volume30d":379284.48933631,"marketCap":1249587.97687546,"percentChange1h":-1.031679,"percentChange24h":2.562974,"percentChange7d":-5.411576,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.90066147684953,"volume24h":586649.34392134,"volume7d":13102035.24974253,"volume30d":576614201.7803488,"marketCap":1899709041.8887842,"percentChange1h":-0.91506752,"percentChange24h":-1.55016688,"percentChange7d":-4.35029285,"lastUpdated":"2021-03-05T00:10:11.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3"},"rank":46,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00003985,"volume24h":12.29842534,"volume7d":274.66902338,"volume30d":12088.05018826,"marketCap":39825.20404553,"percentChange1h":-0.07669,"percentChange24h":4.713002,"percentChange7d":-4.064307,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00125021,"volume24h":385.88539121,"volume7d":8618.23856163,"volume30d":379284.48933631,"marketCap":1249587.97687546,"percentChange1h":-1.031679,"percentChange24h":2.562974,"percentChange7d":-5.411576,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.90066147684953,"volume24h":586649.34392134,"volume7d":13102035.24974253,"volume30d":576614201.7803488,"marketCap":1899709041.8887842,"percentChange1h":-0.91506752,"percentChange24h":-1.55016688,"percentChange7d":-4.35029285,"lastUpdated":"2021-03-05T00:10:11.000Z"}}},{"id":1168,"name":"Decred","symbol":"DCR","slug":"decred","tags":["mineable","hybrid-pow-pos","blake256","medium-of-exchange","store-of-value","privacy","dao"],"cmcRank":47,"marketPairCount":55,"circulatingSupply":12670606.17099592,"totalSupply":12670606.17099592,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2016-02-10T00:00:00.000Z","quotes":[{"name":"btc","price":0.00295672,"volume24h":493.72757357,"volume7d":2619.48639079,"volume30d":31515.09505271,"marketCap":37463.47781561,"percentChange1h":-0.192614,"percentChange24h":0.192948,"percentChange7d":-2.321909,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.09277256,"volume24h":15491.59770983,"volume7d":82191.13443267,"volume30d":988843.24165512,"marketCap":1175484.53478875,"percentChange1h":-1.146495,"percentChange24h":-1.864272,"percentChange7d":-3.693647,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":141.03918160883566,"volume24h":23551385.56651233,"volume7d":124952579.6777166,"volume30d":1503307075.569009,"marketCap":1787051924.8451276,"percentChange1h":-1.03001908,"percentChange24h":-5.79986492,"percentChange7d":-2.61308919,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":47,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00295672,"volume24h":493.72757357,"volume7d":2619.48639079,"volume30d":31515.09505271,"marketCap":37463.47781561,"percentChange1h":-0.192614,"percentChange24h":0.192948,"percentChange7d":-2.321909,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.09277256,"volume24h":15491.59770983,"volume7d":82191.13443267,"volume30d":988843.24165512,"marketCap":1175484.53478875,"percentChange1h":-1.146495,"percentChange24h":-1.864272,"percentChange7d":-3.693647,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":141.03918160883566,"volume24h":23551385.56651233,"volume7d":124952579.6777166,"volume30d":1503307075.569009,"marketCap":1787051924.8451276,"percentChange1h":-1.03001908,"percentChange24h":-5.79986492,"percentChange7d":-2.61308919,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":7186,"name":"PancakeSwap","symbol":"CAKE","slug":"pancakeswap","tags":["defi","yield-farming","binance-chain","binance-smart-chain"],"cmcRank":48,"marketPairCount":38,"circulatingSupply":125775296.17611386,"totalSupply":206281134.3945483,"lastUpdated":"2021-03-05T00:11:02.000Z","dateAdded":"2020-09-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00023768,"volume24h":7240.03076979,"volume7d":59533.70768802,"volume30d":100547.32540988,"marketCap":29893.86257618,"percentChange1h":0.632438,"percentChange24h":-4.939399,"percentChange7d":-8.062458,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00745754,"volume24h":227169.0910056,"volume7d":1867978.00861787,"volume30d":3154854.61908834,"marketCap":937974.13353748,"percentChange1h":-0.329328,"percentChange24h":-6.891238,"percentChange7d":-9.35358,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":11.33745993260221,"volume24h":345357977.35513425,"volume7d":2839827830.205227,"volume30d":4796225601.267946,"marketCap":1425972380.907867,"percentChange1h":-0.21188936,"percentChange24h":-10.62523189,"percentChange7d":-8.33652618,"lastUpdated":"2021-03-05T00:11:02.000Z"}],"rank":48,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00023768,"volume24h":7240.03076979,"volume7d":59533.70768802,"volume30d":100547.32540988,"marketCap":29893.86257618,"percentChange1h":0.632438,"percentChange24h":-4.939399,"percentChange7d":-8.062458,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00745754,"volume24h":227169.0910056,"volume7d":1867978.00861787,"volume30d":3154854.61908834,"marketCap":937974.13353748,"percentChange1h":-0.329328,"percentChange24h":-6.891238,"percentChange7d":-9.35358,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":11.33745993260221,"volume24h":345357977.35513425,"volume7d":2839827830.205227,"volume30d":4796225601.267946,"marketCap":1425972380.907867,"percentChange1h":-0.21188936,"percentChange24h":-10.62523189,"percentChange7d":-8.33652618,"lastUpdated":"2021-03-05T00:11:02.000Z"}}},{"id":6535,"name":"NEAR Protocol","symbol":"NEAR","slug":"near-protocol","tags":["platform","staking","coinbase-ventures-portfolio"],"cmcRank":49,"marketPairCount":30,"circulatingSupply":307336884,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2020-08-11T00:00:00.000Z","quotes":[{"name":"btc","price":0.00009348,"volume24h":2481.09712362,"volume7d":12448.37846233,"volume30d":28445.06348744,"marketCap":28729.29174561,"percentChange1h":3.249939,"percentChange24h":13.573602,"percentChange7d":10.92209,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00293305,"volume24h":77848.92028642,"volume7d":390590.44218174,"volume30d":892515.43557015,"marketCap":901433.61245367,"percentChange1h":2.263156,"percentChange24h":11.241643,"percentChange7d":9.36436,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":4.45901892953731,"volume24h":118351248.9766253,"volume7d":593802283.9683036,"volume30d":1356862961.5159194,"marketCap":1370420983.5010123,"percentChange1h":2.38364988,"percentChange24h":6.78045602,"percentChange7d":10.59142877,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":49,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00009348,"volume24h":2481.09712362,"volume7d":12448.37846233,"volume30d":28445.06348744,"marketCap":28729.29174561,"percentChange1h":3.249939,"percentChange24h":13.573602,"percentChange7d":10.92209,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00293305,"volume24h":77848.92028642,"volume7d":390590.44218174,"volume30d":892515.43557015,"marketCap":901433.61245367,"percentChange1h":2.263156,"percentChange24h":11.241643,"percentChange7d":9.36436,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":4.45901892953731,"volume24h":118351248.9766253,"volume7d":593802283.9683036,"volume30d":1356862961.5159194,"marketCap":1370420983.5010123,"percentChange1h":2.38364988,"percentChange24h":6.78045602,"percentChange7d":10.59142877,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1437,"name":"Zcash","symbol":"ZEC","slug":"zcash","tags":["mineable","pow","equihash","medium-of-exchange","zero-knowledge-proofs","binance-chain"],"cmcRank":50,"marketPairCount":270,"circulatingSupply":11262431.25,"totalSupply":11262431.25,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2016-10-29T00:00:00.000Z","quotes":[{"name":"btc","price":0.00251152,"volume24h":9903.14322368,"volume7d":143797.08537276,"volume30d":1314371.03688934,"marketCap":28285.78649125,"percentChange1h":0.868835,"percentChange24h":3.037525,"percentChange7d":-5.707318,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0788034,"volume24h":310729.07225899,"volume7d":4511894.24631982,"volume30d":41240774.13319994,"marketCap":887517.83105809,"percentChange1h":-0.095191,"percentChange24h":0.921898,"percentChange7d":-7.031513,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":119.80230836836377,"volume24h":472391571.51954085,"volume7d":6859289985.497342,"volume30d":62697043317.61604,"marketCap":1349265261.5899966,"percentChange1h":0.02252386,"percentChange24h":-3.12542971,"percentChange7d":-5.98840585,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":50,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00251152,"volume24h":9903.14322368,"volume7d":143797.08537276,"volume30d":1314371.03688934,"marketCap":28285.78649125,"percentChange1h":0.868835,"percentChange24h":3.037525,"percentChange7d":-5.707318,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0788034,"volume24h":310729.07225899,"volume7d":4511894.24631982,"volume30d":41240774.13319994,"marketCap":887517.83105809,"percentChange1h":-0.095191,"percentChange24h":0.921898,"percentChange7d":-7.031513,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":119.80230836836377,"volume24h":472391571.51954085,"volume7d":6859289985.497342,"volume30d":62697043317.61604,"marketCap":1349265261.5899966,"percentChange1h":0.02252386,"percentChange24h":-3.12542971,"percentChange7d":-5.98840585,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":2469,"name":"Zilliqa","symbol":"ZIL","slug":"zilliqa","tags":["mineable","platform","payments","polychain-capital-portfolio"],"cmcRank":51,"marketPairCount":114,"circulatingSupply":11015439933.933638,"totalSupply":14306907086.933638,"maxSupply":21000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-01-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000244,"volume24h":3791.66594993,"volume7d":14925.28072766,"volume30d":104547.68006249,"marketCap":26833.23387379,"percentChange1h":-1.847257,"percentChange24h":-2.800882,"percentChange7d":3.938453,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00007643,"volume24h":118970.39316971,"volume7d":468307.74118453,"volume30d":3280372.99864064,"marketCap":841941.35932215,"percentChange1h":-2.785324,"percentChange24h":-4.796631,"percentChange7d":2.478797,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.11619842712982,"volume24h":180866922.38083223,"volume7d":711953433.2742867,"volume30d":4987047220.050622,"marketCap":1279976794.466097,"percentChange1h":-2.67077875,"percentChange24h":-8.61462588,"percentChange7d":3.62860967,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":51,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000244,"volume24h":3791.66594993,"volume7d":14925.28072766,"volume30d":104547.68006249,"marketCap":26833.23387379,"percentChange1h":-1.847257,"percentChange24h":-2.800882,"percentChange7d":3.938453,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00007643,"volume24h":118970.39316971,"volume7d":468307.74118453,"volume30d":3280372.99864064,"marketCap":841941.35932215,"percentChange1h":-2.785324,"percentChange24h":-4.796631,"percentChange7d":2.478797,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.11619842712982,"volume24h":180866922.38083223,"volume7d":711953433.2742867,"volume30d":4987047220.050622,"marketCap":1279976794.466097,"percentChange1h":-2.67077875,"percentChange24h":-8.61462588,"percentChange7d":3.62860967,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1321,"name":"Ethereum Classic","symbol":"ETC","slug":"ethereum-classic","tags":["mineable","pow","ethash","platform","smart-contracts"],"cmcRank":52,"marketPairCount":289,"circulatingSupply":116313299,"totalSupply":116313299,"maxSupply":210700000,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2016-07-24T00:00:00.000Z","quotes":[{"name":"btc","price":0.00022805,"volume24h":21655.28593376,"volume7d":157715.59742451,"volume30d":1394882.04776212,"marketCap":26525.41842687,"percentChange1h":1.002409,"percentChange24h":2.56885,"percentChange7d":-2.227127,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00715553,"volume24h":679473.85549324,"volume7d":4948612.79510569,"volume30d":43766953.05943233,"marketCap":832283.09163013,"percentChange1h":0.037107,"percentChange24h":0.462847,"percentChange7d":-3.600197,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":10.87832300117774,"volume24h":1032982591.7780858,"volume7d":7523219369.616057,"volume30d":66537513165.59927,"marketCap":1265293635.8545637,"percentChange1h":0.15497834,"percentChange24h":-3.56607216,"percentChange7d":-2.51858977,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":52,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00022805,"volume24h":21655.28593376,"volume7d":157715.59742451,"volume30d":1394882.04776212,"marketCap":26525.41842687,"percentChange1h":1.002409,"percentChange24h":2.56885,"percentChange7d":-2.227127,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00715553,"volume24h":679473.85549324,"volume7d":4948612.79510569,"volume30d":43766953.05943233,"marketCap":832283.09163013,"percentChange1h":0.037107,"percentChange24h":0.462847,"percentChange7d":-3.600197,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":10.87832300117774,"volume24h":1032982591.7780858,"volume7d":7523219369.616057,"volume30d":66537513165.59927,"marketCap":1265293635.8545637,"percentChange1h":0.15497834,"percentChange24h":-3.56607216,"percentChange7d":-2.51858977,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":1817,"name":"Voyager Token","symbol":"VGX","slug":"voyager-token","tags":["asset-management","wallet"],"cmcRank":53,"marketPairCount":7,"circulatingSupply":222295208,"totalSupply":222295208.238,"maxSupply":222295209,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2017-07-18T00:00:00.000Z","quotes":[{"name":"btc","price":0.00011753,"volume24h":385.5450471,"volume7d":3937.89190943,"volume30d":22856.40404071,"marketCap":26126.01583108,"percentChange1h":-3.459535,"percentChange24h":-8.14165,"percentChange7d":-20.401634,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00368767,"volume24h":12097.17481553,"volume7d":123558.49774524,"volume30d":717161.11363102,"marketCap":819751.11110176,"percentChange1h":-4.382194,"percentChange24h":-10.027739,"percentChange7d":-21.51947,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":5.60624618859849,"volume24h":18390951.9006735,"volume7d":187842072.51717204,"volume30d":1090277337.2247803,"marketCap":1246241662.5937085,"percentChange1h":-4.26953019,"percentChange24h":-13.63594805,"percentChange7d":-20.63891787,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x5af2be193a6abca9c8817001f45744777db30756"},"rank":53,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00011753,"volume24h":385.5450471,"volume7d":3937.89190943,"volume30d":22856.40404071,"marketCap":26126.01583108,"percentChange1h":-3.459535,"percentChange24h":-8.14165,"percentChange7d":-20.401634,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00368767,"volume24h":12097.17481553,"volume7d":123558.49774524,"volume30d":717161.11363102,"marketCap":819751.11110176,"percentChange1h":-4.382194,"percentChange24h":-10.027739,"percentChange7d":-21.51947,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":5.60624618859849,"volume24h":18390951.9006735,"volume7d":187842072.51717204,"volume30d":1090277337.2247803,"marketCap":1246241662.5937085,"percentChange1h":-4.26953019,"percentChange24h":-13.63594805,"percentChange7d":-20.63891787,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":2694,"name":"Nexo","symbol":"NEXO","slug":"nexo","tags":["services","payments"],"cmcRank":54,"marketPairCount":43,"circulatingSupply":560000011,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2018-05-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00004578,"volume24h":166.38048794,"volume7d":1306.36240917,"volume30d":4749.40519094,"marketCap":25639.5765784,"percentChange1h":2.318834,"percentChange24h":1.889268,"percentChange7d":8.30192,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00143659,"volume24h":5220.48944387,"volume7d":40989.4889194,"volume30d":149021.198162,"marketCap":804488.19767299,"percentChange1h":1.34095,"percentChange24h":-0.202781,"percentChange7d":6.780986,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":2.18399627585013,"volume24h":7936544.83168332,"volume7d":62315022.3622377,"volume30d":226552209.8646607,"marketCap":1223037938.500032,"percentChange1h":1.460357,"percentChange24h":-4.20500556,"percentChange7d":7.9790702,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"NEXO-A84"},"rank":54,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00004578,"volume24h":166.38048794,"volume7d":1306.36240917,"volume30d":4749.40519094,"marketCap":25639.5765784,"percentChange1h":2.318834,"percentChange24h":1.889268,"percentChange7d":8.30192,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00143659,"volume24h":5220.48944387,"volume7d":40989.4889194,"volume30d":149021.198162,"marketCap":804488.19767299,"percentChange1h":1.34095,"percentChange24h":-0.202781,"percentChange7d":6.780986,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":2.18399627585013,"volume24h":7936544.83168332,"volume7d":62315022.3622377,"volume30d":226552209.8646607,"marketCap":1223037938.500032,"percentChange1h":1.460357,"percentChange24h":-4.20500556,"percentChange7d":7.9790702,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":4023,"name":"Bitcoin BEP2","symbol":"BTCB","slug":"bitcoin-bep2","tags":["binance-chain"],"cmcRank":55,"marketPairCount":20,"circulatingSupply":25295.75064831,"totalSupply":29501,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-06-18T00:00:00.000Z","quotes":[{"name":"btc","price":1.01079926,"volume24h":644.76400203,"volume7d":4243.24277959,"volume30d":19428.30399009,"marketCap":25568.9260679,"percentChange1h":1.241816,"percentChange24h":1.383713,"percentChange7d":0.404448,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":31.71565932,"volume24h":20230.63946981,"volume7d":133139.43487354,"volume30d":609598.25966857,"marketCap":802271.40982213,"percentChange1h":0.274226,"percentChange24h":-0.697957,"percentChange7d":-1.005578,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":48216.31281342276,"volume24h":30756000.72599958,"volume7d":202407667.9207892,"volume30d":926752935.5617812,"marketCap":1219667826.1092565,"percentChange1h":0.39237569,"percentChange24h":-4.68032271,"percentChange7d":0.1051397,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"BTCB-1DE"},"rank":55,"hasFilters":false,"quote":{"btc":{"name":"btc","price":1.01079926,"volume24h":644.76400203,"volume7d":4243.24277959,"volume30d":19428.30399009,"marketCap":25568.9260679,"percentChange1h":1.241816,"percentChange24h":1.383713,"percentChange7d":0.404448,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":31.71565932,"volume24h":20230.63946981,"volume7d":133139.43487354,"volume30d":609598.25966857,"marketCap":802271.40982213,"percentChange1h":0.274226,"percentChange24h":-0.697957,"percentChange7d":-1.005578,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":48216.31281342276,"volume24h":30756000.72599958,"volume7d":202407667.9207892,"volume30d":926752935.5617812,"marketCap":1219667826.1092565,"percentChange1h":0.39237569,"percentChange24h":-4.68032271,"percentChange7d":0.1051397,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":4157,"name":"THORChain","symbol":"RUNE","slug":"thorchain","tags":["cosmos-ecosystem","decentralized-exchange","defi"],"cmcRank":56,"marketPairCount":29,"circulatingSupply":238275761,"totalSupply":500000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2019-07-23T00:00:00.000Z","quotes":[{"name":"btc","price":0.00010709,"volume24h":1162.55989553,"volume7d":21023.47616628,"volume30d":36091.07381558,"marketCap":25516.02553716,"percentChange1h":-0.302588,"percentChange24h":-5.71929,"percentChange7d":12.672899,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00336002,"volume24h":36477.42435133,"volume7d":659649.67861761,"volume30d":1132422.87122798,"marketCap":800611.55976586,"percentChange1h":-1.255418,"percentChange24h":-7.655117,"percentChange7d":11.090582,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":5.10813354874194,"volume24h":55455473.44198561,"volume7d":1002844523.2662486,"volume30d":1721586640.9763432,"marketCap":1217144408.6161163,"percentChange1h":-1.13907048,"percentChange24h":-11.35847604,"percentChange7d":12.3370191,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"RUNE-B1A"},"rank":56,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00010709,"volume24h":1162.55989553,"volume7d":21023.47616628,"volume30d":36091.07381558,"marketCap":25516.02553716,"percentChange1h":-0.302588,"percentChange24h":-5.71929,"percentChange7d":12.672899,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00336002,"volume24h":36477.42435133,"volume7d":659649.67861761,"volume30d":1132422.87122798,"marketCap":800611.55976586,"percentChange1h":-1.255418,"percentChange24h":-7.655117,"percentChange7d":11.090582,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":5.10813354874194,"volume24h":55455473.44198561,"volume7d":1002844523.2662486,"volume30d":1721586640.9763432,"marketCap":1217144408.6161163,"percentChange1h":-1.13907048,"percentChange24h":-11.35847604,"percentChange7d":12.3370191,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":2577,"name":"Ravencoin","symbol":"RVN","slug":"ravencoin","tags":["mineable","platform","collectibles-nfts","crowdfunding"],"cmcRank":57,"marketPairCount":83,"circulatingSupply":8263870000,"totalSupply":8263870000,"maxSupply":21000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-03-10T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000305,"volume24h":2803.12477368,"volume7d":75608.42020569,"volume30d":163752.07991116,"marketCap":25230.46224846,"percentChange1h":0.165627,"percentChange24h":-3.197123,"percentChange7d":-14.576394,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0000958,"volume24h":87953.12161787,"volume7d":2372351.25604289,"volume30d":5138018.37678983,"marketCap":791651.49387928,"percentChange1h":-0.791678,"percentChange24h":-5.184735,"percentChange7d":-15.776037,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.14563669371684,"volume24h":133712346.38285078,"volume7d":3606610510.858049,"volume30d":7811166679.263879,"marketCap":1203522704.1057825,"percentChange1h":-0.67478399,"percentChange24h":-8.98716629,"percentChange7d":-14.83104274,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":57,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000305,"volume24h":2803.12477368,"volume7d":75608.42020569,"volume30d":163752.07991116,"marketCap":25230.46224846,"percentChange1h":0.165627,"percentChange24h":-3.197123,"percentChange7d":-14.576394,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0000958,"volume24h":87953.12161787,"volume7d":2372351.25604289,"volume30d":5138018.37678983,"marketCap":791651.49387928,"percentChange1h":-0.791678,"percentChange24h":-5.184735,"percentChange7d":-15.776037,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.14563669371684,"volume24h":133712346.38285078,"volume7d":3606610510.858049,"volume30d":7811166679.263879,"marketCap":1203522704.1057825,"percentChange1h":-0.67478399,"percentChange24h":-8.98716629,"percentChange7d":-14.83104274,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":3718,"name":"BitTorrent","symbol":"BTT","slug":"bittorrent","tags":["platform","distributed-computing","filesharing","ipfs"],"cmcRank":58,"marketPairCount":137,"circulatingSupply":989948781380.6676,"totalSupply":990000000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2019-01-31T00:00:00.000Z","quotes":[{"name":"btc","price":2e-8,"volume24h":4786.22429846,"volume7d":45282.84993166,"volume30d":187545.76447955,"marketCap":24602.04620412,"percentChange1h":0.851582,"percentChange24h":2.543383,"percentChange7d":-12.564124,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":7.8e-7,"volume24h":150176.46441062,"volume7d":1420831.5108334,"volume30d":5884588.36619242,"marketCap":771933.80121924,"percentChange1h":-0.112279,"percentChange24h":0.437902,"percentChange7d":-13.792026,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.00118546185646,"volume24h":228308524.56911814,"volume7d":2160045165.351106,"volume30d":8946153399.300371,"marketCap":1173546520.1758409,"percentChange1h":0.00541569,"percentChange24h":-3.59001623,"percentChange7d":-12.82477233,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1958,"name":"Tron","symbol":"TRX","slug":"tron","token_address":"1002000"},"rank":58,"hasFilters":false,"quote":{"btc":{"name":"btc","price":2e-8,"volume24h":4786.22429846,"volume7d":45282.84993166,"volume30d":187545.76447955,"marketCap":24602.04620412,"percentChange1h":0.851582,"percentChange24h":2.543383,"percentChange7d":-12.564124,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":7.8e-7,"volume24h":150176.46441062,"volume7d":1420831.5108334,"volume30d":5884588.36619242,"marketCap":771933.80121924,"percentChange1h":-0.112279,"percentChange24h":0.437902,"percentChange7d":-13.792026,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.00118546185646,"volume24h":228308524.56911814,"volume7d":2160045165.351106,"volume30d":8946153399.300371,"marketCap":1173546520.1758409,"percentChange1h":0.00541569,"percentChange24h":-3.59001623,"percentChange7d":-12.82477233,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":5864,"name":"yearn.finance","symbol":"YFI","slug":"yearn-finance","tags":["defi","yield-farming","yield-aggregator","yearn-partnerships","three-arrows-capital-portfolio","polychain-capital-portfolio"],"cmcRank":59,"marketPairCount":249,"circulatingSupply":36634.94063504,"totalSupply":36666,"maxSupply":36666,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2020-07-18T00:00:00.000Z","quotes":[{"name":"btc","price":0.66719615,"volume24h":4678.79697521,"volume7d":33728.58485723,"volume30d":166600.29321636,"marketCap":24442.69124568,"percentChange1h":1.393174,"percentChange24h":-0.37412,"percentChange7d":-1.188909,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":20.93448869,"volume24h":146805.73738644,"volume7d":1058295.49715384,"volume30d":5227386.23282609,"marketCap":766933.75050049,"percentChange1h":0.424137,"percentChange24h":-2.419696,"percentChange7d":-2.576559,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":31826.040417932152,"volume24h":223184114.98445672,"volume7d":1608893140.8898296,"volume30d":7947029801.595463,"marketCap":1165945101.359328,"percentChange1h":0.54246424,"percentChange24h":-6.33301543,"percentChange7d":-1.48346668,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e"},"rank":59,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.66719615,"volume24h":4678.79697521,"volume7d":33728.58485723,"volume30d":166600.29321636,"marketCap":24442.69124568,"percentChange1h":1.393174,"percentChange24h":-0.37412,"percentChange7d":-1.188909,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":20.93448869,"volume24h":146805.73738644,"volume7d":1058295.49715384,"volume30d":5227386.23282609,"marketCap":766933.75050049,"percentChange1h":0.424137,"percentChange24h":-2.419696,"percentChange7d":-2.576559,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":31826.040417932152,"volume24h":223184114.98445672,"volume7d":1608893140.8898296,"volume30d":7947029801.595463,"marketCap":1165945101.359328,"percentChange1h":0.54246424,"percentChange24h":-6.33301543,"percentChange7d":-1.48346668,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":4642,"name":"Hedera Hashgraph","symbol":"HBAR","slug":"hedera-hashgraph","tags":["dag","marketplace","enterprise-solutions","payments"],"cmcRank":60,"marketPairCount":44,"circulatingSupply":7514692413,"totalSupply":50000000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2019-09-17T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000324,"volume24h":12020.44276791,"volume7d":61785.79939728,"volume30d":257400.23315729,"marketCap":24327.77127803,"percentChange1h":-5.022472,"percentChange24h":28.514551,"percentChange7d":26.946919,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00010158,"volume24h":377163.18395578,"volume7d":1938641.46886003,"volume30d":8076398.96158678,"marketCap":763327.92817467,"percentChange1h":-5.930193,"percentChange24h":25.875816,"percentChange7d":25.164145,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.15442591925954,"volume24h":573389248.3664377,"volume7d":2947255251.753267,"volume30d":12278293659.316082,"marketCap":1160463283.830216,"percentChange1h":-5.81935262,"percentChange24h":20.82774567,"percentChange7d":26.56848816,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"rank":60,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000324,"volume24h":12020.44276791,"volume7d":61785.79939728,"volume30d":257400.23315729,"marketCap":24327.77127803,"percentChange1h":-5.022472,"percentChange24h":28.514551,"percentChange7d":26.946919,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00010158,"volume24h":377163.18395578,"volume7d":1938641.46886003,"volume30d":8076398.96158678,"marketCap":763327.92817467,"percentChange1h":-5.930193,"percentChange24h":25.875816,"percentChange7d":25.164145,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.15442591925954,"volume24h":573389248.3664377,"volume7d":2947255251.753267,"volume30d":12278293659.316082,"marketCap":1160463283.830216,"percentChange1h":-5.81935262,"percentChange24h":20.82774567,"percentChange7d":26.56848816,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":5617,"name":"UMA","symbol":"UMA","slug":"uma","tags":["defi","oracles","dao","coinbase-ventures-portfolio"],"cmcRank":61,"marketPairCount":82,"circulatingSupply":56166652.57836293,"totalSupply":101742283.46432933,"maxSupply":101172570,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2020-05-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00043273,"volume24h":874.76976326,"volume7d":5874.97607772,"volume30d":20210.59125825,"marketCap":24305.01500634,"percentChange1h":0.173244,"percentChange24h":-0.270925,"percentChange7d":1.311914,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0135777,"volume24h":27447.48721066,"volume7d":184338.02530564,"volume30d":634143.94093195,"marketCap":762613.90889493,"percentChange1h":-0.784134,"percentChange24h":-2.31862,"percentChange7d":-0.110856,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":20.64174611983589,"volume24h":41727545.87603807,"volume7d":280243264.1138795,"volume30d":964068957.7213174,"marketCap":1159377782.9235935,"percentChange1h":-0.6672309,"percentChange24h":-6.23599209,"percentChange7d":1.00990067,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828"},"rank":61,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00043273,"volume24h":874.76976326,"volume7d":5874.97607772,"volume30d":20210.59125825,"marketCap":24305.01500634,"percentChange1h":0.173244,"percentChange24h":-0.270925,"percentChange7d":1.311914,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0135777,"volume24h":27447.48721066,"volume7d":184338.02530564,"volume30d":634143.94093195,"marketCap":762613.90889493,"percentChange1h":-0.784134,"percentChange24h":-2.31862,"percentChange7d":-0.110856,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":20.64174611983589,"volume24h":41727545.87603807,"volume7d":280243264.1138795,"volume30d":964068957.7213174,"marketCap":1159377782.9235935,"percentChange1h":-0.6672309,"percentChange24h":-6.23599209,"percentChange7d":1.00990067,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":3513,"name":"Fantom","symbol":"FTM","slug":"fantom","tags":["platform","enterprise-solutions","defi","research","scaling","smart-contracts"],"cmcRank":62,"marketPairCount":44,"circulatingSupply":2545006273,"totalSupply":2545006273,"maxSupply":3175000000,"lastUpdated":"2021-03-05T00:10:05.000Z","dateAdded":"2018-10-29T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000925,"volume24h":4909.13208341,"volume7d":33336.37191966,"volume30d":228552.0723602,"marketCap":23536.19091068,"percentChange1h":-1.925773,"percentChange24h":-11.632326,"percentChange7d":-29.254372,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00029017,"volume24h":154032.91898544,"volume7d":1045989.10518664,"volume30d":7171235.61714294,"marketCap":738490.65907639,"percentChange1h":-2.86309,"percentChange24h":-13.446742,"percentChange7d":-30.247885,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.44113996174671,"volume24h":234171370.37188867,"volume7d":1590184122.776864,"volume30d":10902202482.345976,"marketCap":1122703969.916357,"percentChange1h":-2.74863572,"percentChange24h":-16.91783694,"percentChange7d":-29.4652663,"lastUpdated":"2021-03-05T00:10:05.000Z"}],"platform":{"id":1839,"name":"Binance Chain","symbol":"BNB","slug":"binance-coin","token_address":"FTM-A64"},"rank":62,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000925,"volume24h":4909.13208341,"volume7d":33336.37191966,"volume30d":228552.0723602,"marketCap":23536.19091068,"percentChange1h":-1.925773,"percentChange24h":-11.632326,"percentChange7d":-29.254372,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00029017,"volume24h":154032.91898544,"volume7d":1045989.10518664,"volume30d":7171235.61714294,"marketCap":738490.65907639,"percentChange1h":-2.86309,"percentChange24h":-13.446742,"percentChange7d":-30.247885,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.44113996174671,"volume24h":234171370.37188867,"volume7d":1590184122.776864,"volume30d":10902202482.345976,"marketCap":1122703969.916357,"percentChange1h":-2.74863572,"percentChange24h":-16.91783694,"percentChange7d":-29.4652663,"lastUpdated":"2021-03-05T00:10:05.000Z"}}},{"id":2099,"name":"ICON","symbol":"ICX","slug":"icon","tags":["platform","enterprise-solutions","interoperability"],"cmcRank":63,"marketPairCount":69,"circulatingSupply":592080158.5903833,"totalSupply":800460000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2017-10-27T00:00:00.000Z","quotes":[{"name":"btc","price":0.00003958,"volume24h":9867.11408378,"volume7d":42948.08619632,"volume30d":153456.88138514,"marketCap":23431.77733151,"percentChange1h":1.600773,"percentChange24h":12.257797,"percentChange7d":18.507581,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00124175,"volume24h":309598.59267663,"volume7d":1347574.06589492,"volume30d":4814987.85865479,"marketCap":735214.49373633,"percentChange1h":0.629752,"percentChange24h":9.952855,"percentChange7d":16.843325,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.88779053519966,"volume24h":470672939.199111,"volume7d":2048674190.989399,"volume30d":7320073609.017168,"marketCap":1117723319.4664392,"percentChange1h":0.74832095,"percentChange24h":5.5433525,"percentChange7d":18.15430808,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":63,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00003958,"volume24h":9867.11408378,"volume7d":42948.08619632,"volume30d":153456.88138514,"marketCap":23431.77733151,"percentChange1h":1.600773,"percentChange24h":12.257797,"percentChange7d":18.507581,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00124175,"volume24h":309598.59267663,"volume7d":1347574.06589492,"volume30d":4814987.85865479,"marketCap":735214.49373633,"percentChange1h":0.629752,"percentChange24h":9.952855,"percentChange7d":16.843325,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.88779053519966,"volume24h":470672939.199111,"volume7d":2048674190.989399,"volume30d":7320073609.017168,"marketCap":1117723319.4664392,"percentChange1h":0.74832095,"percentChange24h":5.5433525,"percentChange7d":18.15430808,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":2700,"name":"Celsius","symbol":"CEL","slug":"celsius","tags":[],"cmcRank":64,"marketPairCount":23,"circulatingSupply":238863519.826,"totalSupply":695658160.967,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2018-05-18T00:00:00.000Z","quotes":[{"name":"btc","price":0.00009443,"volume24h":109.12784016,"volume7d":742.06922838,"volume30d":3805.89766685,"marketCap":22555.72403596,"percentChange1h":1.363076,"percentChange24h":1.662357,"percentChange7d":-7.81781,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00296289,"volume24h":3424.08382509,"volume7d":23283.76735316,"volume30d":119416.93908897,"marketCap":707726.73337304,"percentChange1h":0.394327,"percentChange24h":-0.425033,"percentChange7d":-9.112367,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":4.50439040827662,"volume24h":5205526.23991765,"volume7d":35397574.39138498,"volume30d":181545792.00516638,"marketCap":1075934547.5914266,"percentChange1h":0.51261868,"percentChange24h":-4.41834491,"percentChange7d":-8.09260659,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d"},"rank":64,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00009443,"volume24h":109.12784016,"volume7d":742.06922838,"volume30d":3805.89766685,"marketCap":22555.72403596,"percentChange1h":1.363076,"percentChange24h":1.662357,"percentChange7d":-7.81781,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00296289,"volume24h":3424.08382509,"volume7d":23283.76735316,"volume30d":119416.93908897,"marketCap":707726.73337304,"percentChange1h":0.394327,"percentChange24h":-0.425033,"percentChange7d":-9.112367,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":4.50439040827662,"volume24h":5205526.23991765,"volume7d":35397574.39138498,"volume30d":181545792.00516638,"marketCap":1075934547.5914266,"percentChange1h":0.51261868,"percentChange24h":-4.41834491,"percentChange7d":-8.09260659,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":2130,"name":"Enjin Coin","symbol":"ENJ","slug":"enjin-coin","tags":["media","collectibles-nfts","gaming","ethereum"],"cmcRank":65,"marketPairCount":114,"circulatingSupply":834313756.7192237,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2017-11-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.0000265,"volume24h":40178.35398354,"volume7d":70584.88964604,"volume30d":86090.55059256,"marketCap":22112.89650173,"percentChange1h":-3.38174,"percentChange24h":10.318851,"percentChange7d":124.830862,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00083162,"volume24h":1260668.69641363,"volume7d":2214728.8774702,"volume30d":2701247.10020483,"marketCap":693832.21667525,"percentChange1h":-4.305141,"percentChange24h":8.05372,"percentChange7d":121.673459,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.26428594186808,"volume24h":1916554709.0101452,"volume7d":3366982198.7104907,"volume30d":4106620450.579458,"marketCap":1054811153.7272599,"percentChange1h":-4.19238706,"percentChange24h":3.72037981,"percentChange7d":124.16063682,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c"},"rank":65,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0000265,"volume24h":40178.35398354,"volume7d":70584.88964604,"volume30d":86090.55059256,"marketCap":22112.89650173,"percentChange1h":-3.38174,"percentChange24h":10.318851,"percentChange7d":124.830862,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00083162,"volume24h":1260668.69641363,"volume7d":2214728.8774702,"volume30d":2701247.10020483,"marketCap":693832.21667525,"percentChange1h":-4.305141,"percentChange24h":8.05372,"percentChange7d":121.673459,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.26428594186808,"volume24h":1916554709.0101452,"volume7d":3366982198.7104907,"volume30d":4106620450.579458,"marketCap":1054811153.7272599,"percentChange1h":-4.19238706,"percentChange24h":3.72037981,"percentChange7d":124.16063682,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":2135,"name":"Revain","symbol":"REV","slug":"revain","tags":["platform","reputation","smart-contracts"],"cmcRank":66,"marketPairCount":24,"circulatingSupply":85061485689.83401,"totalSupply":85061485689.83401,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2017-11-01T00:00:00.000Z","quotes":[{"name":"btc","price":2.6e-7,"volume24h":81.021776,"volume7d":577.91242345,"volume30d":2607.12476796,"marketCap":21958.48934539,"percentChange1h":0.842021,"percentChange24h":6.357183,"percentChange7d":0.055647,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0000081,"volume24h":2542.20510806,"volume7d":18133.04999521,"volume30d":81803.26610589,"marketCap":688987.41221722,"percentChange1h":-0.121749,"percentChange24h":4.173396,"percentChange7d":-1.349481,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.01231398373061,"volume24h":3864833.94485544,"volume7d":27567101.8530888,"volume30d":124362915.73961563,"marketCap":1047445750.8861313,"percentChange1h":-0.00406477,"percentChange24h":-0.00432887,"percentChange7d":-0.24262057,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9"},"rank":66,"hasFilters":false,"quote":{"btc":{"name":"btc","price":2.6e-7,"volume24h":81.021776,"volume7d":577.91242345,"volume30d":2607.12476796,"marketCap":21958.48934539,"percentChange1h":0.842021,"percentChange24h":6.357183,"percentChange7d":0.055647,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0000081,"volume24h":2542.20510806,"volume7d":18133.04999521,"volume30d":81803.26610589,"marketCap":688987.41221722,"percentChange1h":-0.121749,"percentChange24h":4.173396,"percentChange7d":-1.349481,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.01231398373061,"volume24h":3864833.94485544,"volume7d":27567101.8530888,"volume30d":124362915.73961563,"marketCap":1047445750.8861313,"percentChange1h":-0.00406477,"percentChange24h":-0.00432887,"percentChange7d":-0.24262057,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":1896,"name":"0x","symbol":"ZRX","slug":"0x","tags":["platform","decentralized-exchange","defi","dao","substrate","polkadot","dot-ecosystem","polychain-capital-portfolio"],"cmcRank":67,"marketPairCount":236,"circulatingSupply":760407231.6163942,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-08-16T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002833,"volume24h":3796.47704537,"volume7d":87448.42419271,"volume30d":146872.16688678,"marketCap":21541.55042952,"percentChange1h":-0.721947,"percentChange24h":-2.22362,"percentChange7d":-5.601199,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00088887,"volume24h":119121.35001134,"volume7d":2743852.84612706,"volume30d":4608380.50370192,"marketCap":675905.19785453,"percentChange1h":-1.670769,"percentChange24h":-4.231221,"percentChange7d":-6.926885,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.35132496354874,"volume24h":181096417.2881805,"volume7d":4171392617.2957582,"volume30d":7005974988.0412245,"marketCap":1027557274.5462222,"percentChange1h":-1.55491054,"percentChange24h":-8.07189142,"percentChange7d":-5.88260406,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xe41d2489571d322189246dafa5ebde1f4699f498"},"rank":67,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002833,"volume24h":3796.47704537,"volume7d":87448.42419271,"volume30d":146872.16688678,"marketCap":21541.55042952,"percentChange1h":-0.721947,"percentChange24h":-2.22362,"percentChange7d":-5.601199,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00088887,"volume24h":119121.35001134,"volume7d":2743852.84612706,"volume30d":4608380.50370192,"marketCap":675905.19785453,"percentChange1h":-1.670769,"percentChange24h":-4.231221,"percentChange7d":-6.926885,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.35132496354874,"volume24h":181096417.2881805,"volume7d":4171392617.2957582,"volume30d":7005974988.0412245,"marketCap":1027557274.5462222,"percentChange1h":-1.55491054,"percentChange24h":-8.07189142,"percentChange7d":-5.88260406,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":3897,"name":"OKB","symbol":"OKB","slug":"okb","tags":["marketplace","centralized-exchange","discount-token"],"cmcRank":68,"marketPairCount":63,"circulatingSupply":60000000,"totalSupply":300000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2019-04-30T00:00:00.000Z","quotes":[{"name":"btc","price":0.0003577,"volume24h":10612.2793043,"volume7d":61747.72943344,"volume30d":275437.61961823,"marketCap":21461.72833734,"percentChange1h":-0.59633,"percentChange24h":6.223406,"percentChange7d":-0.813826,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01122334,"volume24h":332979.50239587,"volume7d":1937446.95472691,"volume30d":8642354.66215482,"marketCap":673400.6350011,"percentChange1h":-1.546353,"percentChange24h":4.042365,"percentChange7d":-2.206743,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":17.06249444882343,"volume24h":506218196.0543205,"volume7d":2945439269.7325172,"volume30d":13138698193.909939,"marketCap":1023749666.9294058,"percentChange1h":-1.43034786,"percentChange24h":-0.13010466,"percentChange7d":-1.10950178,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x75231f58b43240c9718dd58b4967c5114342a86c"},"rank":68,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0003577,"volume24h":10612.2793043,"volume7d":61747.72943344,"volume30d":275437.61961823,"marketCap":21461.72833734,"percentChange1h":-0.59633,"percentChange24h":6.223406,"percentChange7d":-0.813826,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01122334,"volume24h":332979.50239587,"volume7d":1937446.95472691,"volume30d":8642354.66215482,"marketCap":673400.6350011,"percentChange1h":-1.546353,"percentChange24h":4.042365,"percentChange7d":-2.206743,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":17.06249444882343,"volume24h":506218196.0543205,"volume7d":2945439269.7325172,"volume30d":13138698193.909939,"marketCap":1023749666.9294058,"percentChange1h":-1.43034786,"percentChange24h":-0.13010466,"percentChange7d":-1.10950178,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":2539,"name":"Ren","symbol":"REN","slug":"ren","tags":["marketplace","defi","dot-ecosystem"],"cmcRank":69,"marketPairCount":123,"circulatingSupply":996163051.0169293,"totalSupply":999999632.80375,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-02-21T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002139,"volume24h":2611.5902364,"volume7d":22892.68568359,"volume30d":127690.21288581,"marketCap":21308.25205348,"percentChange1h":0.336528,"percentChange24h":-3.321187,"percentChange7d":-6.199253,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00067116,"volume24h":81943.37827373,"volume7d":718299.5159521,"volume30d":4006511.92155501,"marketCap":668585.03835475,"percentChange1h":-0.622411,"percentChange24h":-5.306253,"percentChange7d":-7.51654,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.02034367442369,"volume24h":124575923.83272421,"volume7d":1092008014.2340727,"volume30d":6090973236.510119,"marketCap":1016428667.7997274,"percentChange1h":-0.50531701,"percentChange24h":-9.10381022,"percentChange7d":-6.47887463,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x408e41876cccdc0f92210600ef50372656052a38"},"rank":69,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002139,"volume24h":2611.5902364,"volume7d":22892.68568359,"volume30d":127690.21288581,"marketCap":21308.25205348,"percentChange1h":0.336528,"percentChange24h":-3.321187,"percentChange7d":-6.199253,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00067116,"volume24h":81943.37827373,"volume7d":718299.5159521,"volume30d":4006511.92155501,"marketCap":668585.03835475,"percentChange1h":-0.622411,"percentChange24h":-5.306253,"percentChange7d":-7.51654,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.02034367442369,"volume24h":124575923.83272421,"volume7d":1092008014.2340727,"volume30d":6090973236.510119,"marketCap":1016428667.7997274,"percentChange1h":-0.50531701,"percentChange24h":-9.10381022,"percentChange7d":-6.47887463,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1697,"name":"Basic Attention Token","symbol":"BAT","slug":"basic-attention-token","tags":["marketing","content-creation","payments"],"cmcRank":70,"marketPairCount":264,"circulatingSupply":1489288105.6224163,"totalSupply":1500000000,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2017-06-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.0000142,"volume24h":13635.62964578,"volume7d":79521.12433894,"volume30d":289684.77002444,"marketCap":21152.93134335,"percentChange1h":0.565996,"percentChange24h":-6.899689,"percentChange7d":39.929114,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00044566,"volume24h":427842.60045495,"volume7d":2495119.44164707,"volume30d":9089384.8351071,"marketCap":663711.56948997,"percentChange1h":-0.395135,"percentChange24h":-8.811279,"percentChange7d":37.964025,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.67751812665339,"volume24h":650435560.865255,"volume7d":3793251096.846809,"volume30d":13818304013.804281,"marketCap":1009019687.3684756,"percentChange1h":-0.27777432,"percentChange24h":-12.4682724,"percentChange7d":39.51198341,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x0d8775f648430679a709e98d2b0cb6250d2887ef"},"rank":70,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0000142,"volume24h":13635.62964578,"volume7d":79521.12433894,"volume30d":289684.77002444,"marketCap":21152.93134335,"percentChange1h":0.565996,"percentChange24h":-6.899689,"percentChange7d":39.929114,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00044566,"volume24h":427842.60045495,"volume7d":2495119.44164707,"volume30d":9089384.8351071,"marketCap":663711.56948997,"percentChange1h":-0.395135,"percentChange24h":-8.811279,"percentChange7d":37.964025,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.67751812665339,"volume24h":650435560.865255,"volume7d":3793251096.846809,"volume30d":13818304013.804281,"marketCap":1009019687.3684756,"percentChange1h":-0.27777432,"percentChange24h":-12.4682724,"percentChange7d":39.51198341,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":1727,"name":"Bancor","symbol":"BNT","slug":"bancor","tags":["marketplace","decentralized-exchange","defi","payments","amm"],"cmcRank":71,"marketPairCount":159,"circulatingSupply":146820217.97636056,"totalSupply":146820217.97636056,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2017-06-18T00:00:00.000Z","quotes":[{"name":"btc","price":0.00013945,"volume24h":6005.07156656,"volume7d":26831.69213556,"volume30d":144874.5950485,"marketCap":20474.6856786,"percentChange1h":0.363907,"percentChange24h":7.243783,"percentChange7d":31.263137,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00437563,"volume24h":188420.00712078,"volume7d":841892.98449027,"volume30d":4545703.06583619,"marketCap":642430.38215291,"percentChange1h":-0.595293,"percentChange24h":5.041792,"percentChange7d":29.419748,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":6.65212588184079,"volume24h":286448971.8403926,"volume7d":1279903251.7406318,"volume30d":6910688463.491216,"marketCap":976666571.9780545,"percentChange1h":-0.47816737,"percentChange24h":0.82924062,"percentChange7d":30.8718389,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c"},"rank":71,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00013945,"volume24h":6005.07156656,"volume7d":26831.69213556,"volume30d":144874.5950485,"marketCap":20474.6856786,"percentChange1h":0.363907,"percentChange24h":7.243783,"percentChange7d":31.263137,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00437563,"volume24h":188420.00712078,"volume7d":841892.98449027,"volume30d":4545703.06583619,"marketCap":642430.38215291,"percentChange1h":-0.595293,"percentChange24h":5.041792,"percentChange7d":29.419748,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":6.65212588184079,"volume24h":286448971.8403926,"volume7d":1279903251.7406318,"volume30d":6910688463.491216,"marketCap":976666571.9780545,"percentChange1h":-0.47816737,"percentChange24h":0.82924062,"percentChange7d":30.8718389,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":1274,"name":"Waves","symbol":"WAVES","slug":"waves","tags":["lpos","platform","smart-contracts"],"cmcRank":72,"marketPairCount":156,"circulatingSupply":104489794,"totalSupply":104489794,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2016-06-02T00:00:00.000Z","quotes":[{"name":"btc","price":0.00019547,"volume24h":1739.19859669,"volume7d":13967.16158238,"volume30d":101263.2313736,"marketCap":20424.93305689,"percentChange1h":1.511816,"percentChange24h":-0.01806,"percentChange7d":-3.992019,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00613332,"volume24h":54570.50900074,"volume7d":438245.01600715,"volume30d":3177317.46658107,"marketCap":640869.30344915,"percentChange1h":0.541646,"percentChange24h":-2.070947,"percentChange7d":-5.340304,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":9.32429164751951,"volume24h":82961817.24507158,"volume7d":666250023.9104356,"volume30d":4830375157.184142,"marketCap":974293313.4452342,"percentChange1h":0.66011121,"percentChange24h":-5.99825215,"percentChange7d":-4.27822113,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"rank":72,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00019547,"volume24h":1739.19859669,"volume7d":13967.16158238,"volume30d":101263.2313736,"marketCap":20424.93305689,"percentChange1h":1.511816,"percentChange24h":-0.01806,"percentChange7d":-3.992019,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00613332,"volume24h":54570.50900074,"volume7d":438245.01600715,"volume30d":3177317.46658107,"marketCap":640869.30344915,"percentChange1h":0.541646,"percentChange24h":-2.070947,"percentChange7d":-5.340304,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":9.32429164751951,"volume24h":82961817.24507158,"volume7d":666250023.9104356,"volume30d":4830375157.184142,"marketCap":974293313.4452342,"percentChange1h":0.66011121,"percentChange24h":-5.99825215,"percentChange7d":-4.27822113,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":3890,"name":"Polygon","symbol":"MATIC","slug":"polygon","tags":["platform","enterprise-solutions","state-channels","coinbase-ventures-portfolio"],"cmcRank":73,"marketPairCount":95,"circulatingSupply":4966397110,"totalSupply":10000000000,"maxSupply":10000000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2019-04-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000409,"volume24h":5046.29851382,"volume7d":37457.66590581,"volume30d":175107.2842784,"marketCap":20314.00708808,"percentChange1h":-0.883501,"percentChange24h":-8.487058,"percentChange7d":6.636344,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00012834,"volume24h":158336.76441145,"volume7d":1175302.17558228,"volume30d":5494308.49990011,"marketCap":637388.80007753,"percentChange1h":-1.830779,"percentChange24h":-10.366055,"percentChange7d":5.138801,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.19511166604131,"volume24h":240714370.32226142,"volume7d":1786774689.9166424,"volume30d":8352823274.024584,"marketCap":969002014.3548471,"percentChange1h":-1.71510938,"percentChange24h":-13.96069601,"percentChange7d":6.3184589,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0"},"rank":73,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000409,"volume24h":5046.29851382,"volume7d":37457.66590581,"volume30d":175107.2842784,"marketCap":20314.00708808,"percentChange1h":-0.883501,"percentChange24h":-8.487058,"percentChange7d":6.636344,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00012834,"volume24h":158336.76441145,"volume7d":1175302.17558228,"volume30d":5494308.49990011,"marketCap":637388.80007753,"percentChange1h":-1.830779,"percentChange24h":-10.366055,"percentChange7d":5.138801,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.19511166604131,"volume24h":240714370.32226142,"volume7d":1786774689.9166424,"volume30d":8352823274.024584,"marketCap":969002014.3548471,"percentChange1h":-1.71510938,"percentChange24h":-13.96069601,"percentChange7d":6.3184589,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":2499,"name":"SwissBorg","symbol":"CHSB","slug":"swissborg","tags":["asset-management","staking"],"cmcRank":74,"marketPairCount":7,"circulatingSupply":939225238.4742761,"totalSupply":1000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-02-02T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002126,"volume24h":259.84609768,"volume7d":1580.33339233,"volume30d":4485.57508424,"marketCap":19963.60263014,"percentChange1h":2.08793,"percentChange24h":12.186909,"percentChange7d":11.12392,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00066693,"volume24h":8153.14239505,"volume7d":49585.82520374,"volume30d":140743.05026113,"marketCap":626394.22495429,"percentChange1h":1.112253,"percentChange24h":9.883423,"percentChange7d":9.563355,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.01390728320643,"volume24h":12394964.27166697,"volume7d":75383760.27321345,"volume30d":213967203.67990336,"marketCap":952287309.8603646,"percentChange1h":1.23139144,"percentChange24h":5.47670511,"percentChange7d":10.79265712,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xba9d4199fab4f26efe3551d490e3821486f135ba"},"rank":74,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002126,"volume24h":259.84609768,"volume7d":1580.33339233,"volume30d":4485.57508424,"marketCap":19963.60263014,"percentChange1h":2.08793,"percentChange24h":12.186909,"percentChange7d":11.12392,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00066693,"volume24h":8153.14239505,"volume7d":49585.82520374,"volume30d":140743.05026113,"marketCap":626394.22495429,"percentChange1h":1.112253,"percentChange24h":9.883423,"percentChange7d":9.563355,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.01390728320643,"volume24h":12394964.27166697,"volume7d":75383760.27321345,"volume30d":213967203.67990336,"marketCap":952287309.8603646,"percentChange1h":1.23139144,"percentChange24h":5.47670511,"percentChange7d":10.79265712,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":4558,"name":"Flow","symbol":"FLOW","slug":"flow","tags":["collectibles-nfts","coinbase-ventures-portfolio"],"cmcRank":75,"marketPairCount":15,"circulatingSupply":23301002,"totalSupply":1338178864.68,"maxSupply":1338178864,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2021-01-27T00:00:00.000Z","quotes":[{"name":"btc","price":0.00080003,"volume24h":3644.19200095,"volume7d":26467.85466997,"volume30d":213926.65412146,"marketCap":18641.58082762,"percentChange1h":-0.565186,"percentChange24h":24.834398,"percentChange7d":83.431435,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0251025,"volume24h":114343.13066171,"volume7d":830476.9243987,"volume30d":6712336.60517499,"marketCap":584913.39417917,"percentChange1h":-1.515506,"percentChange24h":22.271226,"percentChange7d":80.855422,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":38.16253550082173,"volume24h":173832241.6794237,"volume7d":1262547776.992116,"volume30d":10204552842.238852,"marketCap":889225316.0297182,"percentChange1h":-1.3994648,"percentChange24h":17.36771304,"percentChange7d":82.88462248,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":75,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00080003,"volume24h":3644.19200095,"volume7d":26467.85466997,"volume30d":213926.65412146,"marketCap":18641.58082762,"percentChange1h":-0.565186,"percentChange24h":24.834398,"percentChange7d":83.431435,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0251025,"volume24h":114343.13066171,"volume7d":830476.9243987,"volume30d":6712336.60517499,"marketCap":584913.39417917,"percentChange1h":-1.515506,"percentChange24h":22.271226,"percentChange7d":80.855422,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":38.16253550082173,"volume24h":173832241.6794237,"volume7d":1262547776.992116,"volume30d":10204552842.238852,"marketCap":889225316.0297182,"percentChange1h":-1.3994648,"percentChange24h":17.36771304,"percentChange7d":82.88462248,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":4847,"name":"Stacks","symbol":"STX","slug":"stacks","tags":[],"cmcRank":76,"marketPairCount":17,"circulatingSupply":739781894.219817,"totalSupply":973705260.219817,"maxSupply":1818000000,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2019-10-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002473,"volume24h":1585.42759874,"volume7d":6294.69002139,"volume30d":12685.16442033,"marketCap":18292.16612846,"percentChange1h":-0.813988,"percentChange24h":18.216787,"percentChange7d":13.642007,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00077584,"volume24h":49745.66516544,"volume7d":197507.31119671,"volume30d":398020.03088828,"marketCap":573949.87453187,"percentChange1h":-1.76193,"percentChange24h":15.789491,"percentChange7d":12.04608,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.1794798318393,"volume24h":75626759.9067719,"volume7d":300264112.5418894,"volume30d":605097252.4735425,"marketCap":872557824.1921486,"percentChange1h":-1.64617939,"percentChange24h":11.14591865,"percentChange7d":13.30323844,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"rank":76,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002473,"volume24h":1585.42759874,"volume7d":6294.69002139,"volume30d":12685.16442033,"marketCap":18292.16612846,"percentChange1h":-0.813988,"percentChange24h":18.216787,"percentChange7d":13.642007,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00077584,"volume24h":49745.66516544,"volume7d":197507.31119671,"volume30d":398020.03088828,"marketCap":573949.87453187,"percentChange1h":-1.76193,"percentChange24h":15.789491,"percentChange7d":12.04608,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.1794798318393,"volume24h":75626759.9067719,"volume7d":300264112.5418894,"volume30d":605097252.4735425,"marketCap":872557824.1921486,"percentChange1h":-1.64617939,"percentChange24h":11.14591865,"percentChange7d":13.30323844,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":5777,"name":"renBTC","symbol":"RENBTC","slug":"renbtc","tags":["defi","dot-ecosystem"],"cmcRank":77,"marketPairCount":21,"circulatingSupply":17192.98056265,"totalSupply":17192.98056265,"maxSupply":13698,"lastUpdated":"2021-03-05T00:10:07.000Z","dateAdded":"2020-06-28T00:00:00.000Z","quotes":[{"name":"btc","price":1.00473923,"volume24h":818.38486033,"volume7d":1778.36323317,"volume30d":12826.45590365,"marketCap":17274.4620654,"percentChange1h":0.891505,"percentChange24h":0.74886,"percentChange7d":0.564208,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":31.52551488,"volume24h":25678.30865983,"volume7d":55799.37047256,"volume30d":402453.30732763,"marketCap":542017.56453635,"percentChange1h":-0.072737,"percentChange24h":-1.319774,"percentChange7d":-0.848062,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":47927.24223783124,"volume24h":39037919.7337164,"volume7d":84830016.4374802,"volume30d":611837022.2959788,"marketCap":824012144.2164506,"percentChange1h":0.04500433,"percentChange24h":-5.27720282,"percentChange7d":0.26442412,"lastUpdated":"2021-03-05T00:10:07.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xeb4c2781e4eba804ce9a9803c67d0893436bb27d"},"rank":77,"hasFilters":false,"quote":{"btc":{"name":"btc","price":1.00473923,"volume24h":818.38486033,"volume7d":1778.36323317,"volume30d":12826.45590365,"marketCap":17274.4620654,"percentChange1h":0.891505,"percentChange24h":0.74886,"percentChange7d":0.564208,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":31.52551488,"volume24h":25678.30865983,"volume7d":55799.37047256,"volume30d":402453.30732763,"marketCap":542017.56453635,"percentChange1h":-0.072737,"percentChange24h":-1.319774,"percentChange7d":-0.848062,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":47927.24223783124,"volume24h":39037919.7337164,"volume7d":84830016.4374802,"volume30d":611837022.2959788,"marketCap":824012144.2164506,"percentChange1h":0.04500433,"percentChange24h":-5.27720282,"percentChange7d":0.26442412,"lastUpdated":"2021-03-05T00:10:07.000Z"}}},{"id":109,"name":"DigiByte","symbol":"DGB","slug":"digibyte","tags":["mineable","pow","multiple-algorithms","medium-of-exchange","privacy","payments"],"cmcRank":78,"marketPairCount":105,"circulatingSupply":14092778090.719246,"totalSupply":14092778090.719246,"maxSupply":21000000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2014-02-06T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000119,"volume24h":1281.9131267,"volume7d":3940.96639042,"volume30d":18284.91813427,"marketCap":16832.98221548,"percentChange1h":0.693202,"percentChange24h":3.461543,"percentChange7d":0.551047,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00003748,"volume24h":40222.34835731,"volume7d":123654.96515988,"volume30d":573722.45557386,"marketCap":528165.333877,"percentChange1h":-0.269145,"percentChange24h":1.337211,"percentChange7d":-0.861038,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.05697620662931,"volume24h":61148762.85176894,"volume7d":187988728.87368748,"volume30d":872212086.3498993,"marketCap":802953036.4778327,"percentChange1h":-0.15163498,"percentChange24h":-2.7267729,"percentChange7d":0.25130202,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":78,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000119,"volume24h":1281.9131267,"volume7d":3940.96639042,"volume30d":18284.91813427,"marketCap":16832.98221548,"percentChange1h":0.693202,"percentChange24h":3.461543,"percentChange7d":0.551047,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00003748,"volume24h":40222.34835731,"volume7d":123654.96515988,"volume30d":573722.45557386,"marketCap":528165.333877,"percentChange1h":-0.269145,"percentChange24h":1.337211,"percentChange7d":-0.861038,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.05697620662931,"volume24h":61148762.85176894,"volume7d":187988728.87368748,"volume30d":872212086.3498993,"marketCap":802953036.4778327,"percentChange1h":-0.15163498,"percentChange24h":-2.7267729,"percentChange7d":0.25130202,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":2566,"name":"Ontology","symbol":"ONT","slug":"ontology","tags":["enterprise-solutions","identity","binance-smart-chain","dot-ecosystem"],"cmcRank":79,"marketPairCount":147,"circulatingSupply":807932992,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2018-03-08T00:00:00.000Z","quotes":[{"name":"btc","price":0.00001984,"volume24h":8787.29656208,"volume7d":64966.29182139,"volume30d":707625.54262061,"marketCap":16031.46123259,"percentChange1h":1.234739,"percentChange24h":-0.597357,"percentChange7d":-0.646795,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0006226,"volume24h":275717.36030936,"volume7d":2038435.18464785,"volume30d":22203034.268897,"marketCap":503016.15994453,"percentChange1h":0.267216,"percentChange24h":-2.638349,"percentChange7d":-2.042058,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.94651357363906,"volume24h":419164374.24044746,"volume7d":3098968478.6041164,"volume30d":33754570097.14323,"marketCap":764719543.518818,"percentChange1h":0.38535821,"percentChange24h":-6.54289885,"percentChange7d":-0.94296935,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":79,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00001984,"volume24h":8787.29656208,"volume7d":64966.29182139,"volume30d":707625.54262061,"marketCap":16031.46123259,"percentChange1h":1.234739,"percentChange24h":-0.597357,"percentChange7d":-0.646795,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0006226,"volume24h":275717.36030936,"volume7d":2038435.18464785,"volume30d":22203034.268897,"marketCap":503016.15994453,"percentChange1h":0.267216,"percentChange24h":-2.638349,"percentChange7d":-2.042058,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.94651357363906,"volume24h":419164374.24044746,"volume7d":3098968478.6041164,"volume30d":33754570097.14323,"marketCap":764719543.518818,"percentChange1h":0.38535821,"percentChange24h":-6.54289885,"percentChange7d":-0.94296935,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":4779,"name":"HUSD","symbol":"HUSD","slug":"husd","tags":["pow","medium-of-exchange","stablecoin","stablecoin-asset-backed"],"cmcRank":80,"marketPairCount":78,"circulatingSupply":747958265.039223,"totalSupply":747958265.039223,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-10-15T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002096,"volume24h":29312.07382225,"volume7d":160877.25829276,"volume30d":760516.45874778,"marketCap":15676.60318632,"percentChange1h":0.842843,"percentChange24h":6.375967,"percentChange7d":0.320642,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00065763,"volume24h":919719.45664597,"volume7d":5047815.6366884,"volume30d":23862582.64943701,"marketCap":491881.8454131,"percentChange1h":-0.120935,"percentChange24h":4.191794,"percentChange7d":-1.088207,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.99977823974803,"volume24h":1398220373.5347867,"volume7d":7674034309.118717,"volume30d":36277528962.22996,"marketCap":747792397.6259048,"percentChange1h":-0.00324951,"percentChange24h":0.0133305,"percentChange7d":0.02158402,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xdf574c24545e5ffecb9a659c229253d4111d87e1"},"rank":80,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002096,"volume24h":29312.07382225,"volume7d":160877.25829276,"volume30d":760516.45874778,"marketCap":15676.60318632,"percentChange1h":0.842843,"percentChange24h":6.375967,"percentChange7d":0.320642,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00065763,"volume24h":919719.45664597,"volume7d":5047815.6366884,"volume30d":23862582.64943701,"marketCap":491881.8454131,"percentChange1h":-0.120935,"percentChange24h":4.191794,"percentChange7d":-1.088207,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.99977823974803,"volume24h":1398220373.5347867,"volume7d":7674034309.118717,"volume30d":36277528962.22996,"marketCap":747792397.6259048,"percentChange1h":-0.00324951,"percentChange24h":0.0133305,"percentChange7d":0.02158402,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":7129,"name":"TerraUSD","symbol":"UST","slug":"terrausd","tags":[],"cmcRank":81,"marketPairCount":44,"circulatingSupply":746884792.813818,"totalSupply":746884792.813818,"maxSupply":0,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2020-09-21T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002094,"volume24h":854.2455442,"volume7d":1853.77628559,"volume30d":12651.56914556,"marketCap":15637.41058931,"percentChange1h":0.782255,"percentChange24h":6.172921,"percentChange7d":0.234462,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00065693,"volume24h":26803.5026288,"volume7d":58165.59171023,"volume30d":396965.91823685,"marketCap":490652.10662906,"percentChange1h":-0.180943,"percentChange24h":3.992917,"percentChange7d":-1.173177,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.99871207964124,"volume24h":40748516.50345469,"volume7d":88427307.67547476,"volume30d":603494718.3805927,"marketCap":745922864.6835048,"percentChange1h":-0.06332858,"percentChange24h":-0.1775697,"percentChange7d":-0.06433895,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":81,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002094,"volume24h":854.2455442,"volume7d":1853.77628559,"volume30d":12651.56914556,"marketCap":15637.41058931,"percentChange1h":0.782255,"percentChange24h":6.172921,"percentChange7d":0.234462,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00065693,"volume24h":26803.5026288,"volume7d":58165.59171023,"volume30d":396965.91823685,"marketCap":490652.10662906,"percentChange1h":-0.180943,"percentChange24h":3.992917,"percentChange7d":-1.173177,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.99871207964124,"volume24h":40748516.50345469,"volume7d":88427307.67547476,"volume30d":603494718.3805927,"marketCap":745922864.6835048,"percentChange1h":-0.06332858,"percentChange24h":-0.1775697,"percentChange7d":-0.06433895,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":3822,"name":"Theta Fuel","symbol":"TFUEL","slug":"theta-fuel","tags":["media","content-creation","payments"],"cmcRank":82,"marketPairCount":14,"circulatingSupply":5252590400,"totalSupply":5252590400,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-03-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000292,"volume24h":1203.65587401,"volume7d":7156.56333688,"volume30d":25522.32765959,"marketCap":15356.20289359,"percentChange1h":-0.464987,"percentChange24h":16.827848,"percentChange7d":73.169445,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00009173,"volume24h":37766.88518002,"volume7d":224550.14897813,"volume30d":800809.30028222,"marketCap":481828.7053684,"percentChange1h":-1.416265,"percentChange24h":14.429071,"percentChange7d":70.737546,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.13945670065525,"volume24h":57415799.91819102,"volume7d":341376482.70102364,"volume30d":1217445027.2630785,"marketCap":732508927.0774399,"percentChange1h":-1.30010665,"percentChange24h":9.8400573,"percentChange7d":72.65322252,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":82,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000292,"volume24h":1203.65587401,"volume7d":7156.56333688,"volume30d":25522.32765959,"marketCap":15356.20289359,"percentChange1h":-0.464987,"percentChange24h":16.827848,"percentChange7d":73.169445,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00009173,"volume24h":37766.88518002,"volume7d":224550.14897813,"volume30d":800809.30028222,"marketCap":481828.7053684,"percentChange1h":-1.416265,"percentChange24h":14.429071,"percentChange7d":70.737546,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.13945670065525,"volume24h":57415799.91819102,"volume7d":341376482.70102364,"volume30d":1217445027.2630785,"marketCap":732508927.0774399,"percentChange1h":-1.30010665,"percentChange24h":9.8400573,"percentChange7d":72.65322252,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":2405,"name":"IOST","symbol":"IOST","slug":"iostoken","tags":["hardware","iot"],"cmcRank":83,"marketPairCount":91,"circulatingSupply":16374175762,"totalSupply":22306434689,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2018-01-16T00:00:00.000Z","quotes":[{"name":"btc","price":9.3e-7,"volume24h":13851.28615588,"volume7d":101219.07738004,"volume30d":787479.78613444,"marketCap":15258.60332124,"percentChange1h":0.811752,"percentChange24h":11.173095,"percentChange7d":0.82214,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00002924,"volume24h":434609.21442758,"volume7d":3175932.05498545,"volume30d":24708605.92857492,"marketCap":478766.34184557,"percentChange1h":-0.151728,"percentChange24h":8.890425,"percentChange7d":-0.593752,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.04445129473026,"volume24h":660722629.8709378,"volume7d":4828268959.794568,"volume30d":37563711370.16687,"marketCap":727853312.7617416,"percentChange1h":-0.0340796,"percentChange24h":4.52353021,"percentChange7d":0.52158681,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":83,"hasFilters":false,"quote":{"btc":{"name":"btc","price":9.3e-7,"volume24h":13851.28615588,"volume7d":101219.07738004,"volume30d":787479.78613444,"marketCap":15258.60332124,"percentChange1h":0.811752,"percentChange24h":11.173095,"percentChange7d":0.82214,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00002924,"volume24h":434609.21442758,"volume7d":3175932.05498545,"volume30d":24708605.92857492,"marketCap":478766.34184557,"percentChange1h":-0.151728,"percentChange24h":8.890425,"percentChange7d":-0.593752,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.04445129473026,"volume24h":660722629.8709378,"volume7d":4828268959.794568,"volume30d":37563711370.16687,"marketCap":727853312.7617416,"percentChange1h":-0.0340796,"percentChange24h":4.52353021,"percentChange7d":0.52158681,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":8202,"name":"ZKSwap","symbol":"ZKS","slug":"zkswap","tags":["amm","layer-2"],"cmcRank":84,"marketPairCount":20,"circulatingSupply":197440000,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:02.000Z","dateAdded":"2021-01-07T00:00:00.000Z","quotes":[{"name":"btc","price":0.00007631,"volume24h":4402.8440099,"volume7d":16675.6186986,"volume30d":51278.60849558,"marketCap":15066.62941776,"percentChange1h":3.5731,"percentChange24h":44.833606,"percentChange7d":-8.672896,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00239436,"volume24h":138147.21281873,"volume7d":523227.7682471,"volume30d":1608959.30561291,"marketCap":472742.81259036,"percentChange1h":2.583229,"percentChange24h":41.859798,"percentChange7d":-9.955445,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":3.64007258877353,"volume24h":210020834.1950397,"volume7d":795446611.763743,"volume30d":2446049896.019903,"marketCap":718695931.9274458,"percentChange1h":2.70410043,"percentChange24h":36.1707137,"percentChange7d":-8.94514351,"lastUpdated":"2021-03-05T00:11:02.000Z"}],"rank":84,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00007631,"volume24h":4402.8440099,"volume7d":16675.6186986,"volume30d":51278.60849558,"marketCap":15066.62941776,"percentChange1h":3.5731,"percentChange24h":44.833606,"percentChange7d":-8.672896,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00239436,"volume24h":138147.21281873,"volume7d":523227.7682471,"volume30d":1608959.30561291,"marketCap":472742.81259036,"percentChange1h":2.583229,"percentChange24h":41.859798,"percentChange7d":-9.955445,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":3.64007258877353,"volume24h":210020834.1950397,"volume7d":795446611.763743,"volume30d":2446049896.019903,"marketCap":718695931.9274458,"percentChange1h":2.70410043,"percentChange24h":36.1707137,"percentChange7d":-8.94514351,"lastUpdated":"2021-03-05T00:11:02.000Z"}}},{"id":5567,"name":"Celo","symbol":"CELO","slug":"celo","tags":["pos","zero-knowledge-proofs","mobile","payments","smart-contracts","coinbase-ventures-portfolio","polychain-capital-portfolio"],"cmcRank":85,"marketPairCount":24,"circulatingSupply":184447717,"totalSupply":1000000000,"maxSupply":1000000000,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2020-05-22T00:00:00.000Z","quotes":[{"name":"btc","price":0.00007902,"volume24h":337.49338488,"volume7d":2665.48323351,"volume30d":93763.44400636,"marketCap":14575.50240775,"percentChange1h":-1.91562,"percentChange24h":-1.865177,"percentChange7d":-7.780332,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00247947,"volume24h":10589.46679945,"volume7d":83634.36876163,"volume30d":2941998.04141221,"marketCap":457332.8122768,"percentChange1h":-2.853034,"percentChange24h":-3.880138,"percentChange7d":-9.075416,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":3.76946165345755,"volume24h":16098831.13471453,"volume7d":127146683.13823548,"volume30d":4472626484.823228,"marketCap":695268596.2992903,"percentChange1h":-2.73856882,"percentChange24h":-7.73488807,"percentChange7d":-8.05524129,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"rank":85,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00007902,"volume24h":337.49338488,"volume7d":2665.48323351,"volume30d":93763.44400636,"marketCap":14575.50240775,"percentChange1h":-1.91562,"percentChange24h":-1.865177,"percentChange7d":-7.780332,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00247947,"volume24h":10589.46679945,"volume7d":83634.36876163,"volume30d":2941998.04141221,"marketCap":457332.8122768,"percentChange1h":-2.853034,"percentChange24h":-3.880138,"percentChange7d":-9.075416,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":3.76946165345755,"volume24h":16098831.13471453,"volume7d":127146683.13823548,"volume30d":4472626484.823228,"marketCap":695268596.2992903,"percentChange1h":-2.73856882,"percentChange24h":-7.73488807,"percentChange7d":-8.05524129,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":3330,"name":"Paxos Standard","symbol":"PAX","slug":"paxos-standard","tags":["store-of-value","stablecoin","stablecoin-asset-backed"],"cmcRank":86,"marketPairCount":176,"circulatingSupply":675099791.33,"totalSupply":675099791.33,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2018-09-27T00:00:00.000Z","quotes":[{"name":"btc","price":0.00002099,"volume24h":1640.31965338,"volume7d":30525.00323721,"volume30d":57800.38451001,"marketCap":14170.35000071,"percentChange1h":0.981244,"percentChange24h":6.309399,"percentChange7d":0.566881,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0006586,"volume24h":51468.00289465,"volume7d":957777.31598536,"volume30d":1813591.85152993,"marketCap":444620.42099679,"percentChange1h":0.016144,"percentChange24h":4.126593,"percentChange7d":-0.845426,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":1.00124805097699,"volume24h":78245175.43087499,"volume7d":1456078532.2558372,"volume30d":2757146277.3369803,"marketCap":675942350.2841351,"percentChange1h":0.13399006,"percentChange24h":-0.04925482,"percentChange7d":0.26708883,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x8e870d67f660d95d5be530380d0ec0bd388289e1"},"rank":86,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00002099,"volume24h":1640.31965338,"volume7d":30525.00323721,"volume30d":57800.38451001,"marketCap":14170.35000071,"percentChange1h":0.981244,"percentChange24h":6.309399,"percentChange7d":0.566881,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0006586,"volume24h":51468.00289465,"volume7d":957777.31598536,"volume30d":1813591.85152993,"marketCap":444620.42099679,"percentChange1h":0.016144,"percentChange24h":4.126593,"percentChange7d":-0.845426,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":1.00124805097699,"volume24h":78245175.43087499,"volume7d":1456078532.2558372,"volume30d":2757146277.3369803,"marketCap":675942350.2841351,"percentChange1h":0.13399006,"percentChange24h":-0.04925482,"percentChange7d":0.26708883,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":1567,"name":"Nano","symbol":"NANO","slug":"nano","tags":["pow","blake2b","medium-of-exchange","payments"],"cmcRank":87,"marketPairCount":56,"circulatingSupply":133248297.197,"totalSupply":133248297.197,"maxSupply":133248298,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2017-03-06T00:00:00.000Z","quotes":[{"name":"btc","price":0.00010593,"volume24h":862.67526067,"volume7d":14049.70558796,"volume30d":71162.43800665,"marketCap":14114.86672033,"percentChange1h":0.333188,"percentChange24h":-1.341946,"percentChange7d":-3.71381,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00332372,"volume24h":27068.00026548,"volume7d":440834.98382788,"volume30d":2232850.50433379,"marketCap":442879.53248806,"percentChange1h":-0.625719,"percentChange24h":-3.367651,"percentChange7d":-5.066001,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":5.05294061358089,"volume24h":41150623.88704397,"volume7d":670187469.9953024,"volume30d":3394531934.3382077,"marketCap":673295732.5972179,"percentChange1h":-0.50862872,"percentChange24h":-7.24295298,"percentChange7d":-4.00084056,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":87,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00010593,"volume24h":862.67526067,"volume7d":14049.70558796,"volume30d":71162.43800665,"marketCap":14114.86672033,"percentChange1h":0.333188,"percentChange24h":-1.341946,"percentChange7d":-3.71381,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00332372,"volume24h":27068.00026548,"volume7d":440834.98382788,"volume30d":2232850.50433379,"marketCap":442879.53248806,"percentChange1h":-0.625719,"percentChange24h":-3.367651,"percentChange7d":-5.066001,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":5.05294061358089,"volume24h":41150623.88704397,"volume7d":670187469.9953024,"volume30d":3394531934.3382077,"marketCap":673295732.5972179,"percentChange1h":-0.50862872,"percentChange24h":-7.24295298,"percentChange7d":-4.00084056,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1934,"name":"Loopring","symbol":"LRC","slug":"loopring","tags":["marketplace","decentralized-exchange","defi"],"cmcRank":88,"marketPairCount":96,"circulatingSupply":1221125047.1699116,"totalSupply":1374378440.4424574,"maxSupply":1374513896,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-08-30T00:00:00.000Z","quotes":[{"name":"btc","price":0.00001119,"volume24h":1052.0687554,"volume7d":14174.53829892,"volume30d":50820.31629971,"marketCap":13665.87753292,"percentChange1h":-0.639147,"percentChange24h":-1.987525,"percentChange7d":-0.610544,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00035114,"volume24h":33010.56451821,"volume7d":444751.83644608,"volume30d":1594579.55711993,"marketCap":428791.68275126,"percentChange1h":-1.58876,"percentChange24h":-3.999974,"percentChange7d":-2.006316,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.53383428842539,"volume24h":50184916.19125732,"volume7d":676142137.0313503,"volume30d":2424188819.61894,"marketCap":651878420.6343706,"percentChange1h":-1.47280523,"percentChange24h":-7.84991805,"percentChange7d":-0.90682598,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xbbbbca6a901c926f240b89eacb641d8aec7aeafd"},"rank":88,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00001119,"volume24h":1052.0687554,"volume7d":14174.53829892,"volume30d":50820.31629971,"marketCap":13665.87753292,"percentChange1h":-0.639147,"percentChange24h":-1.987525,"percentChange7d":-0.610544,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00035114,"volume24h":33010.56451821,"volume7d":444751.83644608,"volume30d":1594579.55711993,"marketCap":428791.68275126,"percentChange1h":-1.58876,"percentChange24h":-3.999974,"percentChange7d":-2.006316,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.53383428842539,"volume24h":50184916.19125732,"volume7d":676142137.0313503,"volume30d":2424188819.61894,"marketCap":651878420.6343706,"percentChange1h":-1.47280523,"percentChange24h":-7.84991805,"percentChange7d":-0.90682598,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":1808,"name":"OMG Network","symbol":"OMG","slug":"omg","tags":["medium-of-exchange","payments","state-channels"],"cmcRank":89,"marketPairCount":271,"circulatingSupply":140245398.24513277,"totalSupply":140245398.24513277,"maxSupply":140245399,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2017-07-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00009621,"volume24h":6521.48982101,"volume7d":63714.38285281,"volume30d":352512.86478892,"marketCap":13493.20981255,"percentChange1h":0.253718,"percentChange24h":0.684604,"percentChange7d":-1.031575,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00301881,"volume24h":204623.56607988,"volume7d":1999154.27114667,"volume30d":11060730.21071216,"marketCap":423373.91999154,"percentChange1h":-0.704429,"percentChange24h":-1.382711,"percentChange7d":-2.421434,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":4.5893981227167,"volume24h":311082729.55496037,"volume7d":3039250949.36026,"volume30d":16815277979.64439,"marketCap":643641967.4258683,"percentChange1h":-0.58743163,"percentChange24h":-5.33761573,"percentChange7d":-1.32660239,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"platform":{},"rank":89,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00009621,"volume24h":6521.48982101,"volume7d":63714.38285281,"volume30d":352512.86478892,"marketCap":13493.20981255,"percentChange1h":0.253718,"percentChange24h":0.684604,"percentChange7d":-1.031575,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00301881,"volume24h":204623.56607988,"volume7d":1999154.27114667,"volume30d":11060730.21071216,"marketCap":423373.91999154,"percentChange1h":-0.704429,"percentChange24h":-1.382711,"percentChange7d":-2.421434,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":4.5893981227167,"volume24h":311082729.55496037,"volume7d":3039250949.36026,"volume30d":16815277979.64439,"marketCap":643641967.4258683,"percentChange1h":-0.58743163,"percentChange24h":-5.33761573,"percentChange7d":-1.32660239,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":1966,"name":"Decentraland","symbol":"MANA","slug":"decentraland","tags":["platform","collectibles-nfts","gaming","payments"],"cmcRank":90,"marketPairCount":121,"circulatingSupply":1574503348.8857312,"totalSupply":2194743627.320146,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-09-17T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000834,"volume24h":14117.35586055,"volume7d":39965.14952279,"volume30d":110218.75764814,"marketCap":13133.72371655,"percentChange1h":-1.137215,"percentChange24h":27.35416,"percentChange7d":48.287394,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00026173,"volume24h":442957.63377493,"volume7d":1253979.01993477,"volume30d":3458313.339106,"marketCap":412094.39200987,"percentChange1h":-2.082069,"percentChange24h":24.73925,"percentChange7d":46.204925,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.39789947640637,"volume24h":673414467.511129,"volume7d":1906384605.6405635,"volume30d":5257564286.43921,"marketCap":626494058.1217085,"percentChange1h":-1.966695,"percentChange24h":19.73676137,"percentChange7d":47.84534625,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x0f5d2fb29fb7d3cfee444a200298f468908cc942"},"rank":90,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000834,"volume24h":14117.35586055,"volume7d":39965.14952279,"volume30d":110218.75764814,"marketCap":13133.72371655,"percentChange1h":-1.137215,"percentChange24h":27.35416,"percentChange7d":48.287394,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00026173,"volume24h":442957.63377493,"volume7d":1253979.01993477,"volume30d":3458313.339106,"marketCap":412094.39200987,"percentChange1h":-2.082069,"percentChange24h":24.73925,"percentChange7d":46.204925,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.39789947640637,"volume24h":673414467.511129,"volume7d":1906384605.6405635,"volume30d":5257564286.43921,"marketCap":626494058.1217085,"percentChange1h":-1.966695,"percentChange24h":19.73676137,"percentChange7d":47.84534625,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":4066,"name":"Chiliz","symbol":"CHZ","slug":"chiliz","tags":["sports","content-creation","payments"],"cmcRank":91,"marketPairCount":87,"circulatingSupply":5441092180.146096,"totalSupply":8888888888,"maxSupply":8888888888,"lastUpdated":"2021-03-05T00:10:10.000Z","dateAdded":"2019-07-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000236,"volume24h":41550.96245184,"volume7d":117754.21767477,"volume30d":133728.53702682,"marketCap":12863.1686041,"percentChange1h":-8.253027,"percentChange24h":40.307708,"percentChange7d":120.018837,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00007418,"volume24h":1303736.77553711,"volume7d":3694752.05863479,"volume30d":4195975.28848358,"marketCap":403605.23486142,"percentChange1h":-9.129873,"percentChange24h":37.426828,"percentChange7d":116.92901,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.11276931927323,"volume24h":1982029746.2558024,"volume7d":5617014586.5809965,"volume30d":6379008395.235693,"marketCap":613588261.2579702,"percentChange1h":-9.02280293,"percentChange24h":31.91552163,"percentChange7d":119.36295582,"lastUpdated":"2021-03-05T00:10:10.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x3506424f91fd33084466f402d5d97f05f8e3b4af"},"rank":91,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000236,"volume24h":41550.96245184,"volume7d":117754.21767477,"volume30d":133728.53702682,"marketCap":12863.1686041,"percentChange1h":-8.253027,"percentChange24h":40.307708,"percentChange7d":120.018837,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00007418,"volume24h":1303736.77553711,"volume7d":3694752.05863479,"volume30d":4195975.28848358,"marketCap":403605.23486142,"percentChange1h":-9.129873,"percentChange24h":37.426828,"percentChange7d":116.92901,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.11276931927323,"volume24h":1982029746.2558024,"volume7d":5617014586.5809965,"volume30d":6379008395.235693,"marketCap":613588261.2579702,"percentChange1h":-9.02280293,"percentChange24h":31.91552163,"percentChange7d":119.36295582,"lastUpdated":"2021-03-05T00:10:10.000Z"}}},{"id":1684,"name":"Qtum","symbol":"QTUM","slug":"qtum","tags":["platform","smart-contracts"],"cmcRank":92,"marketPairCount":198,"circulatingSupply":98174128.7260568,"totalSupply":103207932,"maxSupply":107822406,"lastUpdated":"2021-03-05T00:10:08.000Z","dateAdded":"2017-05-24T00:00:00.000Z","quotes":[{"name":"btc","price":0.00011716,"volume24h":10802.20553599,"volume7d":2375087.08128832,"volume30d":2864441.43996459,"marketCap":11502.07889448,"percentChange1h":1.195455,"percentChange24h":10.653575,"percentChange7d":7.242067,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00367611,"volume24h":338938.78223654,"volume7d":74522663.02056345,"volume30d":89877043.18480305,"marketCap":360898.57767424,"percentChange1h":0.228308,"percentChange24h":8.381572,"percentChange7d":5.736017,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":5.5886687201592,"volume24h":515277900.5376931,"volume7d":113294445357.73157,"volume30d":136637223433.7012,"marketCap":548662682.3401964,"percentChange1h":0.34640369,"percentChange24h":4.03508431,"percentChange7d":6.92237571,"lastUpdated":"2021-03-05T00:10:08.000Z"}],"rank":92,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00011716,"volume24h":10802.20553599,"volume7d":2375087.08128832,"volume30d":2864441.43996459,"marketCap":11502.07889448,"percentChange1h":1.195455,"percentChange24h":10.653575,"percentChange7d":7.242067,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00367611,"volume24h":338938.78223654,"volume7d":74522663.02056345,"volume30d":89877043.18480305,"marketCap":360898.57767424,"percentChange1h":0.228308,"percentChange24h":8.381572,"percentChange7d":5.736017,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":5.5886687201592,"volume24h":515277900.5376931,"volume7d":113294445357.73157,"volume30d":136637223433.7012,"marketCap":548662682.3401964,"percentChange1h":0.34640369,"percentChange24h":4.03508431,"percentChange7d":6.92237571,"lastUpdated":"2021-03-05T00:10:08.000Z"}}},{"id":8104,"name":"1inch","symbol":"1INCH","slug":"1inch","tags":["defi","amm"],"cmcRank":93,"marketPairCount":124,"circulatingSupply":144003284.4391842,"totalSupply":1500000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2020-12-25T00:00:00.000Z","quotes":[{"name":"btc","price":0.00007861,"volume24h":2339.95276008,"volume7d":13978.17355355,"volume30d":143336.00276941,"marketCap":11320.04409709,"percentChange1h":0.044543,"percentChange24h":-2.932716,"percentChange7d":-7.12638,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00246652,"volume24h":73420.25999694,"volume7d":438590.53656632,"volume30d":4497426.94373339,"marketCap":355186.90589134,"percentChange1h":-0.911605,"percentChange24h":-4.925757,"percentChange7d":-8.430647,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":3.74977147674949,"volume24h":111618496.94070862,"volume7d":666775307.8780926,"volume30d":6837295803.379891,"marketCap":539979408.5482966,"percentChange1h":-0.7948524,"percentChange24h":-8.73857426,"percentChange7d":-7.40323843,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":93,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00007861,"volume24h":2339.95276008,"volume7d":13978.17355355,"volume30d":143336.00276941,"marketCap":11320.04409709,"percentChange1h":0.044543,"percentChange24h":-2.932716,"percentChange7d":-7.12638,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00246652,"volume24h":73420.25999694,"volume7d":438590.53656632,"volume30d":4497426.94373339,"marketCap":355186.90589134,"percentChange1h":-0.911605,"percentChange24h":-4.925757,"percentChange7d":-8.430647,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":3.74977147674949,"volume24h":111618496.94070862,"volume7d":666775307.8780926,"volume30d":6837295803.379891,"marketCap":539979408.5482966,"percentChange1h":-0.7948524,"percentChange24h":-8.73857426,"percentChange7d":-7.40323843,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":3964,"name":"Reserve Rights","symbol":"RSR","slug":"reserve-rights","tags":["store-of-value","defi","stablecoin","stablecoin-asset-backed","coinbase-ventures-portfolio"],"cmcRank":94,"marketPairCount":70,"circulatingSupply":9349999000,"totalSupply":100000000000,"maxSupply":100000000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2019-05-24T00:00:00.000Z","quotes":[{"name":"btc","price":0.00000119,"volume24h":4646.10877181,"volume7d":32498.42721987,"volume30d":108101.01095442,"marketCap":11126.65010052,"percentChange1h":-0.23624,"percentChange24h":-3.541259,"percentChange7d":33.771145,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00003734,"volume24h":145780.08574344,"volume7d":1019697.07110324,"volume30d":3391865.19728302,"marketCap":349118.81864104,"percentChange1h":-1.189704,"percentChange24h":-5.521806,"percentChange7d":31.892535,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.05676517052084,"volume24h":221624849.2616094,"volume7d":1550213175.7109559,"volume30d":5156545280.035629,"marketCap":530754287.60468346,"percentChange1h":-1.07327885,"percentChange24h":-9.31071936,"percentChange7d":33.37237064,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0x8762db106b2c2a0bccb3a80d1ed41273552616e8"},"rank":94,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00000119,"volume24h":4646.10877181,"volume7d":32498.42721987,"volume30d":108101.01095442,"marketCap":11126.65010052,"percentChange1h":-0.23624,"percentChange24h":-3.541259,"percentChange7d":33.771145,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00003734,"volume24h":145780.08574344,"volume7d":1019697.07110324,"volume30d":3391865.19728302,"marketCap":349118.81864104,"percentChange1h":-1.189704,"percentChange24h":-5.521806,"percentChange7d":31.892535,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.05676517052084,"volume24h":221624849.2616094,"volume7d":1550213175.7109559,"volume30d":5156545280.035629,"marketCap":530754287.60468346,"percentChange1h":-1.07327885,"percentChange24h":-9.31071936,"percentChange7d":33.37237064,"lastUpdated":"2021-03-05T00:10:09.000Z"}}},{"id":5268,"name":"Energy Web Token","symbol":"EWT","slug":"energy-web-token","tags":["energy","enterprise-solutions","identity","substrate","dot-ecosystem"],"cmcRank":95,"marketPairCount":12,"circulatingSupply":30062138,"totalSupply":48638535.4433,"maxSupply":100000000,"lastUpdated":"2021-03-05T00:11:03.000Z","dateAdded":"2020-03-28T00:00:00.000Z","quotes":[{"name":"btc","price":0.00033883,"volume24h":142.53443678,"volume7d":865.08930619,"volume30d":5650.31763991,"marketCap":10185.9892284,"percentChange1h":1.946904,"percentChange24h":0.980905,"percentChange7d":22.964383,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01063144,"volume24h":4472.27635764,"volume7d":27143.74532027,"volume30d":177288.95953135,"marketCap":319603.8784345,"percentChange1h":0.972575,"percentChange24h":-1.092494,"percentChange7d":21.237538,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":16.16264479892528,"volume24h":6799060.1635546,"volume7d":41265776.69591507,"volume30d":269526792.57599413,"marketCap":485883658.39027405,"percentChange1h":1.09154827,"percentChange24h":-5.05903773,"percentChange7d":22.59782392,"lastUpdated":"2021-03-05T00:11:03.000Z"}],"rank":95,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00033883,"volume24h":142.53443678,"volume7d":865.08930619,"volume30d":5650.31763991,"marketCap":10185.9892284,"percentChange1h":1.946904,"percentChange24h":0.980905,"percentChange7d":22.964383,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01063144,"volume24h":4472.27635764,"volume7d":27143.74532027,"volume30d":177288.95953135,"marketCap":319603.8784345,"percentChange1h":0.972575,"percentChange24h":-1.092494,"percentChange7d":21.237538,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":16.16264479892528,"volume24h":6799060.1635546,"volume7d":41265776.69591507,"volume30d":269526792.57599413,"marketCap":485883658.39027405,"percentChange1h":1.09154827,"percentChange24h":-5.05903773,"percentChange7d":22.59782392,"lastUpdated":"2021-03-05T00:11:03.000Z"}}},{"id":6538,"name":"Curve DAO Token","symbol":"CRV","slug":"curve-dao-token","tags":["defi","dao","yield-farming","amm"],"cmcRank":96,"marketPairCount":99,"circulatingSupply":240133718.22039735,"totalSupply":1445720689.834492,"maxSupply":3303030299,"lastUpdated":"2021-03-05T00:11:05.000Z","dateAdded":"2020-08-14T00:00:00.000Z","quotes":[{"name":"btc","price":0.00004248,"volume24h":4517.45384896,"volume7d":31690.73226688,"volume30d":289644.00425613,"marketCap":10201.87203905,"percentChange1h":0.729265,"percentChange24h":-6.085192,"percentChange7d":-0.568272,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.00133302,"volume24h":141743.30429797,"volume7d":994354.17766614,"volume30d":9088105.73522117,"marketCap":320102.23041277,"percentChange1h":-0.233427,"percentChange24h":-8.013505,"percentChange7d":-1.964638,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":2.02654292255367,"volume24h":215487858.2261532,"volume7d":1511685177.121793,"volume30d":13816359438.74133,"marketCap":486641287.1260435,"percentChange1h":-0.11587466,"percentChange24h":-11.70249164,"percentChange7d":-0.86468037,"lastUpdated":"2021-03-05T00:11:05.000Z"}],"platform":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","token_address":"0xD533a949740bb3306d119CC777fa900bA034cd52"},"rank":96,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00004248,"volume24h":4517.45384896,"volume7d":31690.73226688,"volume30d":289644.00425613,"marketCap":10201.87203905,"percentChange1h":0.729265,"percentChange24h":-6.085192,"percentChange7d":-0.568272,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.00133302,"volume24h":141743.30429797,"volume7d":994354.17766614,"volume30d":9088105.73522117,"marketCap":320102.23041277,"percentChange1h":-0.233427,"percentChange24h":-8.013505,"percentChange7d":-1.964638,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":2.02654292255367,"volume24h":215487858.2261532,"volume7d":1511685177.121793,"volume30d":13816359438.74133,"marketCap":486641287.1260435,"percentChange1h":-0.11587466,"percentChange24h":-11.70249164,"percentChange7d":-0.86468037,"lastUpdated":"2021-03-05T00:11:05.000Z"}}},{"id":2083,"name":"Bitcoin Gold","symbol":"BTG","slug":"bitcoin-gold","tags":["mineable","medium-of-exchange","payments"],"cmcRank":97,"marketPairCount":72,"circulatingSupply":17513923.589,"totalSupply":17513923.589,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:11:02.000Z","dateAdded":"2017-10-23T00:00:00.000Z","quotes":[{"name":"btc","price":0.0005759,"volume24h":1164.89067353,"volume7d":58529.44842358,"volume30d":235652.23448534,"marketCap":10086.33754627,"percentChange1h":0.128753,"percentChange24h":3.759536,"percentChange7d":0.900757,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.01807003,"volume24h":36550.55673681,"volume7d":1836467.55355342,"volume30d":7394016.07585176,"marketCap":316477.12624706,"percentChange1h":-0.828199,"percentChange24h":1.629085,"percentChange7d":-0.516239,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":27.47129468626626,"volume24h":55566654.29240623,"volume7d":2791923482.9261646,"volume30d":11240888560.95527,"marketCap":481130156.026169,"percentChange1h":-0.71134783,"percentChange24h":-2.44660362,"percentChange7d":0.59996981,"lastUpdated":"2021-03-05T00:11:02.000Z"}],"rank":97,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.0005759,"volume24h":1164.89067353,"volume7d":58529.44842358,"volume30d":235652.23448534,"marketCap":10086.33754627,"percentChange1h":0.128753,"percentChange24h":3.759536,"percentChange7d":0.900757,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.01807003,"volume24h":36550.55673681,"volume7d":1836467.55355342,"volume30d":7394016.07585176,"marketCap":316477.12624706,"percentChange1h":-0.828199,"percentChange24h":1.629085,"percentChange7d":-0.516239,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":27.47129468626626,"volume24h":55566654.29240623,"volume7d":2791923482.9261646,"volume30d":11240888560.95527,"marketCap":481130156.026169,"percentChange1h":-0.71134783,"percentChange24h":-2.44660362,"percentChange7d":0.59996981,"lastUpdated":"2021-03-05T00:11:02.000Z"}}},{"id":1042,"name":"Siacoin","symbol":"SC","slug":"siacoin","tags":["mineable","pow","blake2b","platform","distributed-computing","filesharing"],"cmcRank":98,"marketPairCount":50,"circulatingSupply":47091952992,"totalSupply":47091952992,"lastUpdated":"2021-03-05T00:11:04.000Z","dateAdded":"2015-08-26T00:00:00.000Z","quotes":[{"name":"btc","price":2.1e-7,"volume24h":384.8216722,"volume7d":2454.18944645,"volume30d":75683.15177073,"marketCap":10060.6184862,"percentChange1h":-0.687044,"percentChange24h":1.556129,"percentChange7d":-3.089356,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0000067,"volume24h":12074.47761663,"volume7d":77004.64313372,"volume30d":2374696.09437867,"marketCap":315670.14411048,"percentChange1h":-1.6362,"percentChange24h":-0.52908,"percentChange7d":-4.450317,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":0.01019077137686,"volume24h":18356446.06772478,"volume7d":117067721.14943062,"volume30d":3610175294.347242,"marketCap":479903326.6313102,"percentChange1h":-1.52030087,"percentChange24h":-4.51821935,"percentChange7d":-3.37824853,"lastUpdated":"2021-03-05T00:11:04.000Z"}],"rank":98,"hasFilters":false,"quote":{"btc":{"name":"btc","price":2.1e-7,"volume24h":384.8216722,"volume7d":2454.18944645,"volume30d":75683.15177073,"marketCap":10060.6184862,"percentChange1h":-0.687044,"percentChange24h":1.556129,"percentChange7d":-3.089356,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0000067,"volume24h":12074.47761663,"volume7d":77004.64313372,"volume30d":2374696.09437867,"marketCap":315670.14411048,"percentChange1h":-1.6362,"percentChange24h":-0.52908,"percentChange7d":-4.450317,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":0.01019077137686,"volume24h":18356446.06772478,"volume7d":117067721.14943062,"volume30d":3610175294.347242,"marketCap":479903326.6313102,"percentChange1h":-1.52030087,"percentChange24h":-4.51821935,"percentChange7d":-3.37824853,"lastUpdated":"2021-03-05T00:11:04.000Z"}}},{"id":5632,"name":"Arweave","symbol":"AR","slug":"arweave","tags":["distributed-computing","filesharing","ipfs","coinbase-ventures-portfolio"],"cmcRank":99,"marketPairCount":17,"circulatingSupply":33394701,"totalSupply":63190435,"maxSupply":66000000,"lastUpdated":"2021-03-05T00:11:06.000Z","dateAdded":"2020-05-27T00:00:00.000Z","quotes":[{"name":"btc","price":0.00030034,"volume24h":499.59506276,"volume7d":5437.50794221,"volume30d":11661.31466475,"marketCap":10029.8570885,"percentChange1h":-2.984325,"percentChange24h":-6.569592,"percentChange7d":45.631772,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.0094238,"volume24h":15675.7008206,"volume7d":170611.669459,"volume30d":365894.88864826,"marketCap":314704.94948966,"percentChange1h":-3.911525,"percentChange24h":-8.487959,"percentChange7d":43.586598,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":14.32670326365027,"volume24h":23831271.69749195,"volume7d":259375519.86809576,"volume30d":556258415.7411876,"marketCap":478435971.8053249,"percentChange1h":-3.79830677,"percentChange24h":-12.15791931,"percentChange7d":45.19764142,"lastUpdated":"2021-03-05T00:11:06.000Z"}],"rank":99,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00030034,"volume24h":499.59506276,"volume7d":5437.50794221,"volume30d":11661.31466475,"marketCap":10029.8570885,"percentChange1h":-2.984325,"percentChange24h":-6.569592,"percentChange7d":45.631772,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.0094238,"volume24h":15675.7008206,"volume7d":170611.669459,"volume30d":365894.88864826,"marketCap":314704.94948966,"percentChange1h":-3.911525,"percentChange24h":-8.487959,"percentChange7d":43.586598,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":14.32670326365027,"volume24h":23831271.69749195,"volume7d":259375519.86809576,"volume30d":556258415.7411876,"marketCap":478435971.8053249,"percentChange1h":-3.79830677,"percentChange24h":-12.15791931,"percentChange7d":45.19764142,"lastUpdated":"2021-03-05T00:11:06.000Z"}}},{"id":1698,"name":"Horizen","symbol":"ZEN","slug":"horizen","tags":["mineable","medium-of-exchange","content-creation","privacy"],"cmcRank":100,"marketPairCount":57,"circulatingSupply":10827768.75,"totalSupply":10827768.75,"maxSupply":21000000,"lastUpdated":"2021-03-05T00:10:09.000Z","dateAdded":"2017-06-01T00:00:00.000Z","quotes":[{"name":"btc","price":0.00091145,"volume24h":638.39694065,"volume7d":9399.47943507,"volume30d":52480.77407586,"marketCap":9868.97319354,"percentChange1h":0.61079,"percentChange24h":-2.228862,"percentChange7d":-13.896048,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"eth","price":0.02859841,"volume24h":20030.86137605,"volume7d":294925.70778859,"volume30d":1646679.43012534,"marketCap":309656.92561566,"percentChange1h":-0.35077,"percentChange24h":-4.236356,"percentChange7d":-15.105246,"lastUpdated":"2021-03-05T00:10:02.000Z"},{"name":"USD","price":43.47725111137176,"volume24h":30452284.4146254,"volume7d":448366216.81681615,"volume30d":2503394607.175508,"marketCap":470761620.9196139,"percentChange1h":-0.2333561,"percentChange24h":-8.07681987,"percentChange7d":-14.15272615,"lastUpdated":"2021-03-05T00:10:09.000Z"}],"rank":100,"hasFilters":false,"quote":{"btc":{"name":"btc","price":0.00091145,"volume24h":638.39694065,"volume7d":9399.47943507,"volume30d":52480.77407586,"marketCap":9868.97319354,"percentChange1h":0.61079,"percentChange24h":-2.228862,"percentChange7d":-13.896048,"lastUpdated":"2021-03-05T00:10:02.000Z"},"eth":{"name":"eth","price":0.02859841,"volume24h":20030.86137605,"volume7d":294925.70778859,"volume30d":1646679.43012534,"marketCap":309656.92561566,"percentChange1h":-0.35077,"percentChange24h":-4.236356,"percentChange7d":-15.105246,"lastUpdated":"2021-03-05T00:10:02.000Z"},"USD":{"name":"USD","price":43.47725111137176,"volume24h":30452284.4146254,"volume7d":448366216.81681615,"volume30d":2503394607.175508,"marketCap":470761620.9196139,"percentChange1h":-0.2333561,"percentChange24h":-8.07681987,"percentChange7d":-14.15272615,"lastUpdated":"2021-03-05T00:10:09.000Z"}}}],"filters":{},"tags":[],"cryptocurrencyType":"all","totalItems":"4245","pageSize":100},"listingHistorical":{"data":[],"page":1,"sort":"","sortDirection":""},"new":{"page":1,"sort":"","sortDirection":"","data":[]},"watchlist":{"page":1,"sort":"","sortDirection":"","data":[]},"map":{"data":[],"slugMap":{}},"info":{},"prices":{"aed":3.6729930000000146,"all":102.71297599997999,"amd":524.5416369991722,"ars":90.29580000002339,"aud":1.2965830000000023,"azn":1.7008049999999895,"bam":1.6246590000000012,"bch":0.0019958805974247145,"bdt":84.7682500000355,"bgn":1.6328580000000017,"bhd":0.37699399999999994,"bmd":1,"bob":6.902828000000214,"brl":5.67009999999987,"btc":0.000020960046906181663,"byn":2.6090679999999957,"cad":1.2682579999999972,"chf":0.9294969999999964,"clp":732.0995570026515,"cny":6.4700000000001125,"cop":3702.186114952257,"crc":612.2308430007099,"cup":25.750000000000448,"czk":21.9373490000011,"dkk":6.214294000000161,"dop":57.8310409999946,"dzd":133.44872599991913,"egp":15.694699999999912,"eth":0.0006574935876364934,"eur":0.8356999999999992,"gbp":0.7199029999999984,"gel":3.3249999999999793,"ghs":5.730902000000033,"gtq":7.687439000000158,"hkd":7.759879999999812,"hnl":24.282167999998887,"hrk":6.338500000000036,"huf":305.1210430004635,"idr":14273.220858014069,"ils":3.3090099999999545,"inr":73.13354999997465,"iqd":1459.726103999655,"irr":42104.99999721265,"isk":127.95000000002028,"jmd":150.1279440001093,"jod":0.7089999999999992,"jpy":107.93494329001044,"kes":109.6500000000442,"kgs":84.63333899997339,"khr":4067.6136440542227,"krw":1130.5220189942534,"kwd":0.30264899999999983,"kzt":420.1054249998331,"lbp":1516.448875995211,"lkr":195.68817700016487,"ltc":0.005607960582683114,"mad":8.961070999999937,"mdl":17.550109000001093,"mkd":51.45539200000258,"mmk":1409.5422900059252,"mnt":2851.457679967916,"mur":39.85000000000291,"mxn":21.150114000001444,"myr":4.057500000000019,"nad":15.29000000000116,"ngn":379.999999999772,"nio":34.95316399999902,"nok":8.598265000000206,"npr":116.42910899993228,"nzd":1.3932340000000019,"omr":0.38498399999999944,"pab":1,"pen":3.6767989999999706,"php":48.60650000000969,"pkr":157.22522200006188,"pln":3.8133569999999963,"qar":3.640999999999947,"ron":4.07770000000004,"rsd":97.61263199995791,"rub":74.5867000000147,"sar":3.7507919999999864,"sek":8.504228000000044,"sgd":1.3375979999999945,"ssp":130.25999999996972,"thb":30.43293900000434,"tnd":2.7514999999999756,"try":7.533424999999896,"ttd":6.782738999999922,"twd":27.830000999999978,"uah":27.723700999999572,"ugx":3655.8863479738857,"usd":1,"uyu":43.96178600000712,"uzs":10457.508005577149,"ves":1872262.4947965145,"vnd":23150.313774259826,"xrp":2.102636552389166,"zar":15.308380999999336},"quotesLatest":{"data":{"1":{"id":1,"name":"Bitcoin","symbol":"BTC","slug":"bitcoin","num_market_pairs":9800,"date_added":"2013-04-28T00:00:00.000Z","tags":["mineable","pow","sha-256","store-of-value","state-channels","coinbase-ventures-portfolio","three-arrows-capital-portfolio","polychain-capital-portfolio"],"max_supply":21000000,"circulating_supply":18644881,"total_supply":18644881,"is_market_cap_included_in_calc":1,"platform":null,"cmc_rank":1,"last_updated":"2021-03-05T00:11:02.000Z","quote":{"USD":{"price":47709.81689478347,"volume_24h":51173620738.75683,"volume_24h_reported":138297352179.09125,"volume_7d":7524897934762.189,"volume_30d":32217086287781.844,"volume_30d_reported":3.7141711872754026e+29,"percent_change_1h":-0.82105696,"percent_change_24h":-5.96423994,"percent_change_7d":-0.28004045,"percent_change_30d":34.11576615,"percent_change_60d":44.80877969,"percent_change_90d":153.71018139,"market_cap":889543858535.0273,"market_cap_by_total_supply":889543858535.0273,"last_updated":"2021-03-05T00:11:02.000Z"}},"noLazyLoad":true},"2":{"id":2,"name":"Litecoin","symbol":"LTC","slug":"litecoin","num_market_pairs":757,"date_added":"2013-04-28T00:00:00.000Z","tags":["mineable","pow","scrypt","medium-of-exchange","binance-chain"],"max_supply":84000000,"circulating_supply":66595487.80105277,"total_supply":66595487.80105277,"platform":{"id":2502,"name":"Heco","symbol":"HT","slug":"huobi-token","token_address":"0xecb56cf772b5c9a6907fb7d32387da2fcbfb63b4"},"is_market_cap_included_in_calc":1,"cmc_rank":8,"last_updated":"2021-03-05T00:12:02.000Z","quote":{"HT":{"price":11.495709304515039,"volume_24h":349405441.07164633,"volume_24h_reported":1212299905.739431,"volume_7d":3425037310.858147,"volume_30d":876635010264.9471,"volume_30d_reported":899202754621.9486,"percent_change_1h":-0.70180175,"percent_change_24h":-7.67527382,"percent_change_7d":10.01063415,"percent_change_30d":-44.30426775,"percent_change_60d":-64.15996254,"percent_change_90d":-44.82961929,"market_cap":765562368.7532802,"market_cap_by_total_supply":765562368.7532802,"last_updated":"2021-03-05T00:12:05.000Z"},"USD":{"price":178.31794379723559,"volume_24h":5419870853.814233,"volume_24h_reported":18804827151.651558,"volume_7d":53128136291.78692,"volume_30d":13598095458948.145,"volume_30d_reported":13948159440498.342,"percent_change_1h":-0.77617308,"percent_change_24h":-5.55832852,"percent_change_7d":-3.01431595,"percent_change_30d":24.25310165,"percent_change_60d":12.5668213,"percent_change_90d":121.32262666,"market_cap":11875170450.857616,"market_cap_by_total_supply":11875170450.857616,"last_updated":"2021-03-05T00:12:02.000Z"}},"noLazyLoad":true},"52":{"id":52,"name":"XRP","symbol":"XRP","slug":"xrp","num_market_pairs":674,"date_added":"2013-08-04T00:00:00.000Z","tags":["medium-of-exchange","enterprise-solutions","binance-chain"],"max_supply":100000000000,"circulating_supply":45404028640,"total_supply":99990831162,"is_market_cap_included_in_calc":1,"platform":null,"cmc_rank":7,"last_updated":"2021-03-05T00:12:02.000Z","quote":{"USD":{"price":0.47559336817565,"volume_24h":6004328912.023817,"volume_24h_reported":10856307316.255955,"volume_7d":74101068609.04135,"volume_30d":217761636379.78577,"volume_30d_reported":334246208177.9481,"percent_change_1h":1.03927733,"percent_change_24h":5.54688086,"percent_change_7d":6.03666945,"percent_change_30d":29.71566097,"percent_change_60d":110.29270508,"percent_change_90d":-14.50382606,"market_cap":21593854909.641277,"market_cap_by_total_supply":47554976179.018326,"last_updated":"2021-03-05T00:12:02.000Z"}}},"1027":{"id":1027,"name":"Ethereum","symbol":"ETH","slug":"ethereum","num_market_pairs":6115,"date_added":"2015-08-07T00:00:00.000Z","tags":["mineable","pow","smart-contracts","coinbase-ventures-portfolio","three-arrows-capital-portfolio","polychain-capital-portfolio"],"max_supply":null,"circulating_supply":114917418.999,"total_supply":114917418.999,"platform":{"id":2502,"name":"Heco","symbol":"HT","slug":"huobi-token","token_address":"0x64ff637fb478863b7468bc97d30a5bf3a428a1fd"},"is_market_cap_included_in_calc":1,"cmc_rank":2,"last_updated":"2021-03-05T00:11:02.000Z","quote":{"HT":{"price":98.05036256162822,"volume_24h":1447566346.6764774,"volume_24h_reported":3303399365.0849853,"volume_7d":6165523759.697629,"volume_30d":268934653206.5771,"volume_30d_reported":430087626631.7735,"percent_change_1h":0.23630199,"percent_change_24h":-6.121322,"percent_change_7d":14.75217193,"percent_change_30d":-55.29797543,"percent_change_60d":-50.96637514,"percent_change_90d":-33.99415529,"market_cap":11267694597.498491,"market_cap_by_total_supply":11267694597.498491,"last_updated":"2021-03-05T00:12:05.000Z"},"USD":{"price":1520.9273805919872,"volume_24h":22454208575.719997,"volume_24h_reported":51241325499.74029,"volume_7d":95637727967.81442,"volume_30d":4171632485242.505,"volume_30d_reported":6671388359088.852,"percent_change_1h":0.16122805,"percent_change_24h":-3.9687456,"percent_change_7d":1.16583708,"percent_change_30d":-0.27305542,"percent_change_60d":54.0053995,"percent_change_90d":164.79039544,"market_cap":174781049062.54092,"market_cap_by_total_supply":174781049062.54092,"last_updated":"2021-03-05T00:11:02.000Z"}}},"1831":{"id":1831,"name":"Bitcoin Cash","symbol":"BCH","slug":"bitcoin-cash","num_market_pairs":587,"date_added":"2017-07-23T00:00:00.000Z","tags":["mineable","marketplace","enterprise-solutions","binance-chain"],"max_supply":21000000,"circulating_supply":18670925,"total_supply":18670925,"platform":{"id":2502,"name":"Heco","symbol":"HT","slug":"huobi-token","token_address":"0xef3cebd77e0c52cb6f60875d9306397b5caca375"},"is_market_cap_included_in_calc":1,"cmc_rank":10,"last_updated":"2021-03-05T00:11:08.000Z","quote":{"HT":{"price":32.30027123510608,"volume_24h":235365458.40391424,"volume_24h_reported":468778987.077654,"volume_7d":2087005380.8227878,"volume_30d":12604576984.817049,"volume_30d_reported":21332477835.088425,"percent_change_1h":-0.16907585,"percent_change_24h":-7.07288345,"percent_change_7d":12.16123714,"percent_change_30d":-47.74817946,"percent_change_60d":-61.2899595,"percent_change_90d":-55.81677802,"market_cap":603075941.710323,"market_cap_by_total_supply":603075941.710323,"last_updated":"2021-03-05T00:12:05.000Z"},"USD":{"price":501.0319762065428,"volume_24h":3650917352.876672,"volume_24h_reported":7271556965.885243,"volume_7d":32372992248.15304,"volume_30d":195518361749.4366,"volume_30d_reported":330902903238.77905,"percent_change_1h":-0.24384618,"percent_change_24h":-4.94212573,"percent_change_7d":-1.11833831,"percent_change_30d":16.56998674,"percent_change_60d":21.58096141,"percent_change_90d":77.24631617,"market_cap":9354730450.354145,"market_cap_by_total_supply":9354730450.354145,"last_updated":"2021-03-05T00:11:08.000Z"}}}}},"quotesHistorical":{"loading":false},"ohlcvHistorical":{},"related":{"data":{}},"marketPairsLatest":{"data":{}},"pricePerformanceStatsLatest":{"data":{}},"topDerivatives":[],"yieldFarmingRankingLatest":{"filterKey":""},"gainersLosers":{"gainers":[],"losers":[],"sortGainers":"","sortDirectionGainers":"","sortLosers":"","sortDirectionLosers":""},"trendingCoins":{"sort":"","sortDirection":"","data":[]},"mostViewed":{"sort":"","sortDirection":"","data":[]},"spotlight":{"data":{}}},"exchange":{"listingLatest":{"page":1,"sort":"","sortDirection":"","data":[]},"map":{"data":[]},"info":{},"quotesLatest":{},"marketPairsLatest":{"data":{}},"related":{"data":[]},"fiatOnRamp":{"activeSection":null,"selectedCrypto":null,"availableCurrencies":["USD","EUR","GBP","NGN","RUB"],"selectedCurrency":"USD","orderBy":"price","order":"asc","tableData":[]}},"globalMetrics":{"quotesHistorical":{},"trendingSearch":[]},"watchlist":{"loaded":false,"data":[],"onboarding":[],"import":null,"counts":{"isLoading":false,"data":{}}},"user":{"data":{},"isLoading":true,"isLoaded":false,"isHeadlineLoading":true},"router":{"statusCode":{"404":false,"429":false}},"news":{"loading":false,"slugs":{"isLoading":false,"data":{}},"articles":{"is404":false,"data":{}},"data":{},"assets":{"isLoading":false,"data":[]}},"newsEditor":{"loading":false,"isDeleting":false,"data":{"slug":null,"cover":null,"ownerAsset":{},"title":"","subtitle":"","author":"","content":null,"assets":[],"status":"PUBLISHED","visibility":true}},"eventEditor":{"loading":false,"isDeleting":false,"data":{"slug":null,"title":"","description":null,"startDate":"","startTime":"","ownerAsset":{},"type":""}},"events":{"isLoading":false,"data":[],"event":null},"podcasts":{"loading":false,"data":[],"podcast":null}},"initialProps":{"initialI18nStore":{"en":{"common":{}}},"initialLanguage":"en","i18nServerInstance":null,"pageProps":{"reqLang":"en","cryptocurrencyType":"all","gaPageviewProps":{"section":"Market Cap","subSection":"Cryptocurrencies"},"listingParams":{"cryptocurrencyType":"all","page":1,"pageSize":100,"sort":"market_cap","tags":[],"volume24hRange":"0~","filters":{},"concat":false,"aux":["ath","atl","high24h","low24h","num_market_pairs","cmc_rank","date_added","tags","platform","max_supply","circulating_supply","total_supply","volume_7d","volume_30d"],"convert":"USD,btc,eth"},"view":"","pageSize":100,"currentPage":1,"homepageColumns":"Classic","globalMetrics":[8697,35174,1475809405041.5144,-3.71767,135046987298.84,110697420159.10931,7.708054528069,5.619202,12183562234.601456,5.889254710685,67294721606.317444,152594587005.76025,10.705550194741,60.619901465059,-0.480876594941,11.906321188232,{"lastBlock":"11974965","slowPrice":"76","slowConfirmationTime":"478","standardPrice":"90","standardConfirmationTime":"149","fastPrice":"103","fastConfirmationTime":"45"}],"promotionCards":[{"platform":"Take a quiz!","title":"Learn and earn $CKB","image":"https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/603dd5aeedc95900191eadf4/1614666484628.png","link":"https://coinmarketcap.com/earn/"},{"platform":"Portfolio 🔥","title":"Track your trades in one place, not all over the place","image":"https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/60386d82bc6ea500157b34fb/1614319262237.png","link":"https://coinmarketcap.com/portfolio-tracker/"},{"platform":"Alexandria Learning Corner","title":"Learn about yield farming! 👨‍🌾","image":"https://s3.amazonaws.com/s2.coinmarketcap.com/static/alerts/6038d61e3e919b0013d44cf2/1614337604165.png","link":"https://coinmarketcap.com/alexandria/article/what-is-yield-farming"}],"namespacesRequired":["common"]}}},"page":"/beta","query":{"cryptocurrencyType":""},"buildId":"29bbdee3","assetPrefix":"https://s2.coinmarketcap.com","isFallback":false,"customServer":true,"gip":true,"appGip":true}</script><script nomodule="" src="https://s2.coinmarketcap.com/_next/static/chunks/polyfills-e8eca63c205eee47a573.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/main-8c2f1e2471828b81026a.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/webpack-be8a316bce581625c5e2.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/framework.79429a698019810fd19a.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/1e19085d46be8ae3ff9c236da791e2000f4cc35c.23f981a62f3f56e06112.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/1c11b056ac55245ba2869cf57b017ab03e18a446.02ed88a4d38c623d113c.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/4365bb2cb90d6d43b6fddc97ef52a8b566ce4201.c0a603978ddfb09d775c.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/f9959dec42fa8e5dd928304f52bcef5e4ead81f9.f2d9050ac9d6f7d2d952.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/cc3f29cc0b0d7942a12bd812058ff8235d49ca65.ccb58c77657ffd1100b6.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/cc7dcbae8818cfb099ac311f79b30db63cc819c9.02d3b7ae70a6953b6d6c.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/83f2e50000c4e2c363ec472406c2edda6f1c16ce.4e6698faeb878b7c9fbc.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/7b3896592f6bd0b298c19dd4d8354f9d91ce480e.31b014859fab358272ba.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/30e309cc7abdea375b7bd984e366392b9da944f2.34c7bdff426bd3314c34.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/655c323a305da81d43026031816a85481c1b9680.99082661aeb7fde288ba.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/40cbab0505061a40cd620fc62d1432b9a5bf5fe3.36806490989603726c11.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/a2bba0fe3111882f540e8cbf7e3f49e7588aa2a7.66ed31d5df5a3a5b4c01.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/ff4c89236e3083d754c8c98a83cf29ec81011835.33965c9745169d21431f.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/e5f9db3ed3e15d395c2ab0c90e7af622747a347b.86fa3a0df25aee41ea77.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/70794292e8bd506f7e17b958757c7918261d0773.d095fe82ba43c673422c.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/36aac51ccbe5da6bcf06fecba089bd8f49d2f980.252c7850b2f3588aab2f.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/950ebb8a0f19bd14810d16d95e94cbf78936c50b.6f07e361ad537c7aaa50.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/styles.c55cd3c43b63374a73d7.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/pages/_app-f801038298b6b2d536bd.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/52008dc0e9812e50b03c486092cb752124e99f7a.9ed0e143932b36e29cea.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/292200965c05c5b5cc37f5c0702b676604da0ca4.71bf21e2045803f26945.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/ddcb9a40acf772ca37174d6c128e70e6a1c92357.cd8d8cbbbf76bc1e02c4.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/0cf15cf80c9426c9bbc1acb37060dddab236e82e.0d127d0bc685c1834b11.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/9e5be863560300e96a85facda4ef903e230fdedb.ad0fc8f5a6582d4fb424.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/8521dc3d9b9ece6fd49907ddd03d2a4841e98f4b.8e61b096f19fe2b16a84.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/chunks/pages/beta-0ecd66a250ce4678c31a.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/29bbdee3/_buildManifest.js"></script><script async="" src="https://s2.coinmarketcap.com/_next/static/29bbdee3/_ssgManifest.js"></script></body></html>
In [ ]:
 
In [55]:
criptos = soup.find("tbody").find_all("tr")
# criptos[0].find(class_="sc-AxhUy fqrLrs").text
# criptos[0].find(class_="price___3rj7O").text

for criptomoneda in criptos: 
    try:
        nombre = criptomoneda.find(class_="sc-AxhUy fqrLrs").text
        precio = criptomoneda.find(class_="price___3rj7O").text
        print(f"La moneda <<{nombre}>> tiene un precio de {precio}.")
    except:
        try:
            nombre = criptomoneda.find_all("span")[3].text
            precio = criptomoneda.find_all("span")[-2].text
            print(f{nombre}» {precio}")
        except:
            pass
La moneda <<Bitcoin>> tiene un precio de $47,701.18.
La moneda <<Ethereum>> tiene un precio de $1,520.27.
La moneda <<Tether>> tiene un precio de $1.00.
La moneda <<Cardano>> tiene un precio de $1.10.
La moneda <<Binance Coin>> tiene un precio de $226.77.
La moneda <<Polkadot>> tiene un precio de $34.91.
La moneda <<XRP>> tiene un precio de $0.476.
La moneda <<Litecoin>> tiene un precio de $178.31.
La moneda <<Chainlink>> tiene un precio de $27.24.
La moneda <<Bitcoin Cash>> tiene un precio de $500.98.
«Stellar» $0.41
«USD Coin» $1.00
«Uniswap» $27.46
«Dogecoin» $0.05
«NEM» $0.69
«Wrapped Bitcoin» $47946.52
«Aave» $368.62
«THETA» $4.38
«Cosmos» $18.57
«Monero» $214.14
«TRON» $0.05
«Crypto.com Coin» $0.15
«EOS» $3.71
«IOTA» $1.23
«Solana» $12.90
«Bitcoin SV» $179.79
«VeChain» $0.05
«Terra» $7.31
«Binance USD» $1.00
«Huobi Token» $15.48
«Tezos» $3.61
«FTX Token» $29.05
«Neo» $37.32
«Dai» $1.00
«Elrond» $146.61
«Synthetix» $21.18
«Algorand» $1.07
«Filecoin» $40.27
«The Graph» $1.81
«Compound» $466.32
«SushiSwap» $16.98
«Maker» $2153.11
«Dash» $208.23
«Kusama» $231.24
«Avalanche» $24.84
«UNUS SED LEO» $1.90
«Decred» $141.04
«PancakeSwap» $11.34
«NEAR Protocol» $4.46
«Zcash» $119.80
«Zilliqa» $0.12
«Ethereum Classic» $10.88
«Voyager Token» $5.61
«Nexo» $2.18
«Bitcoin BEP2» $48216.31
«THORChain» $5.11
«Ravencoin» $0.15
«BitTorrent» $0.00
«yearn.finance» $31826.04
«Hedera Hashgraph» $0.15
«UMA» $20.64
«Fantom» $0.44
«ICON» $1.89
«Celsius» $4.50
«Enjin Coin» $1.26
«Revain» $0.01
«0x» $1.35
«OKB» $17.06
«Ren» $1.02
«Basic Attention Token» $0.68
«Bancor» $6.65
«Waves» $9.32
«Polygon» $0.20
«SwissBorg» $1.01
«Flow» $38.16
«Stacks» $1.18
«renBTC» $47927.24
«DigiByte» $0.06
«Ontology» $0.95
«HUSD» $1.00
«TerraUSD» $1.00
«Theta Fuel» $0.14
«IOST» $0.04
«ZKSwap» $3.64
«Celo» $3.77
«Paxos Standard» $1.00
«Nano» $5.05
«Loopring» $0.53
«OMG Network» $4.59
«Decentraland» $0.40
«Chiliz» $0.11
«Qtum» $5.59
«1inch» $3.75
«Reserve Rights» $0.06
«Energy Web Token» $16.16
«Curve DAO Token» $2.03
«Bitcoin Gold» $27.47
«Siacoin» $0.01
«Arweave» $14.33
«Horizen» $43.48
In [ ]:
 
In [ ]:
 
In [ ]:
 

Happy web scraping :)

Ahora vamos con herramientas generales de limpieza de texto 🛠️

Codificación ASCII

  • Los computadores sólo entienden números (bits) -- por eso existe la codificación de caracteres
  • La codificación más sencilla es la ASCII
  • ASCII: American Standard Code for Information Interchange
  • Utiliza 7 bits para representar los caracteres

Bit (Binary Digit)

  • La unidad fundamental de la computación
  • 0 o 1
  • Sí o No
  • True o False

• ASCII utiliza 7 bits, es decir, podemos usar $2^7 = 128$ caracteres

In [56]:
ord("h")
Out[56]:
104
In [58]:
f"{ord('h'):08b}"
Out[58]:
'01101000'
In [61]:
def palabras_bits(palabra):
    return [f"{ord(letra):08b}" for letra in palabra]

palabras_bits("la clase de nlp")
Out[61]:
['01101100',
 '01100001',
 '00100000',
 '01100011',
 '01101100',
 '01100001',
 '01110011',
 '01100101',
 '00100000',
 '01100100',
 '01100101',
 '00100000',
 '01101110',
 '01101100',
 '01110000']

Codificación Unicode (UTF-8)


  • ASCII es muy pequeño y no soporta otros idiomas
  • Unicode tiene la misma función que ASCII pero abarca muchos más caracteres
  • Unicode: Universalidad, Uniformidad y Unicidad

Codificación Unicode (UTF-8)

In [62]:
"El Niño".encode("utf-8")
Out[62]:
b'El Ni\xc3\xb1o'
In [63]:
b'El Ni\xc3\xb1o'.decode("utf-8")
Out[63]:
'El Niño'
  • La buena noticia: Python 3 automáticamente asume UTF-8
  • # -*- coding: UTF-8 -*-

Emojis

🧑‍🏫 👩‍🏫 👩🏽‍🏫

https://charactercounttool.com/

In [64]:
print(b"\xf0\x9f\xa7\x91".decode("utf-8"))
print(b"\xf0\x9f\x91\xa9".decode("utf-8"))
print(b"\xf0\x9f\x8f\xab".decode("utf-8"))
🧑
👩
🏫
In [65]:
print("🧑‍🏫")
"🧑‍🏫".encode("utf-8") # xf0\x9f\x8f\xab school
🧑‍🏫
Out[65]:
b'\xf0\x9f\xa7\x91\xe2\x80\x8d\xf0\x9f\x8f\xab'
In [66]:
print("👩‍🏫")
"👩‍🏫".encode("utf-8") # \xf0\x9f\x91\xa9 woman
👩‍🏫
Out[66]:
b'\xf0\x9f\x91\xa9\xe2\x80\x8d\xf0\x9f\x8f\xab'
In [67]:
# https://emojipedia.org/woman-teacher-medium-skin-tone/
# Woman + Medium Skin Tone + Zero Width Joiner + School
print("👩🏽‍🏫")
"👩🏽‍🏫".encode("utf-8") # \xf0\x9f\x8f\xbd dark skin
👩🏽‍🏫
Out[67]:
b'\xf0\x9f\x91\xa9\xf0\x9f\x8f\xbd\xe2\x80\x8d\xf0\x9f\x8f\xab'
In [ ]:
import emoji
import regex

def get_emojis(text):
    emoji_list = []
    data = regex.findall(r'\X', text)
    for word in data:
        if any(char in emoji.UNICODE_EMOJI for char in word):
            emoji_list.append(word)

    return emoji_list

get_emojis("Me encanta programar 🤓 NLP es lo mejor ❤️")

RegEx: Expresión Regular

In [68]:
texto = "¡Hola! ¿Cómo estás? Mi número es 777-777-8888"
In [136]:
texto = "¡Hola! ¿Cómo estás? Mi número es 77777 y el de mi hermano es 999-666-6666"
print(texto)

"XXX-XXX-XXXX" in texto
¡Hola! ¿Cómo estás? Mi número es 77777 y el de mi hermano es 999-666-6666
Out[136]:
False
In [101]:
import re

patron = "XXX-XXX-XXXX"
re.search(patron, texto)
# texto[23:29]
In [141]:
patron = r'(\d){0,6}'

re.search(patron, texto)
Out[141]:
<re.Match object; span=(0, 0), match=''>
In [103]:
re.sub(patron, "********", texto)
Out[103]:
'¡Hola! ¿Cómo estás? Mi número es ******** y el de mi hermano es ********'
In [113]:
# re.sub(r"[a-zA-Z]", "*", texto)
re.sub(r"[^\w]", " ", texto) # Letras y digitos
re.sub(r"[^\w\D]", " ", texto) # Letras 
Out[113]:
'¡Hola! ¿Cómo estás? Mi número es 777-777-8888 y el de mi hermano es 999-666-6666'

¿Cómo es la de un email?

(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])

Otros métodos útiles en Python

In [114]:
texto = "Existen dos #países donde no se puede comprar la #CocaCola"
In [116]:
texto.upper()
Out[116]:
'EXISTEN DOS #PAÍSES DONDE NO SE PUEDE COMPRAR LA #COCACOLA'
In [118]:
texto.startswith("E")
Out[118]:
True
In [119]:
texto.split()
Out[119]:
['Existen',
 'dos',
 '#países',
 'donde',
 'no',
 'se',
 'puede',
 'comprar',
 'la',
 '#CocaCola']
In [120]:
for palabra in texto.split():
    if palabra.startswith("#"):
        print(palabra)
#países
#CocaCola

Traducción

  • El mundo, especialmente el de machine learning, se mueve en inglés

Instalar librerias:

  • pip install langdetect
  • pip install googletrans
  • pip install translate
In [145]:
from langdetect import detect, detect_langs

detect("Las cabras tienen acentos.")
Out[145]:
'es'
In [146]:
detect_langs("quiero dormir")
Out[146]:
[es:0.8571410024166922, pt:0.14285899758330547]
In [149]:
from translate import Translator

trans = Translator(to_lang="es")

trans.translate("Hello friends")
Out[149]:
'Hola amigos:'

GoogleTrans es una mejor libreria, sin embargo, en el momento no se encuentra funcionando. https://pypi.org/project/googletrans/

Y si tuvieramos más tiempo...

Una libreria muy especial:

🤓 Recapitulando: Hoy aprendímos...

  • Adquisición de datos

    • Web Scraping
  • Herramientas generales de limpieza de texto

    • ASCII, Unicode
    • RegEx
    • Otros métodos útiles en Python
    • Traducción

¡Tiempo de taller!

Taller # 3: Web Scraping y pre-procesamiento de texto

Fecha de entrega: Marzo 11, 2021. (Antes del inicio de la próxima clase)

Proxima clase(s): Pre-procesamineto de NLP y representación vectorial de textos